From a33c293a92b559487b2d2ef722e82977711b7a8e Mon Sep 17 00:00:00 2001 From: Damian Stasik <920747+damianstasik@users.noreply.github.com> Date: Mon, 4 Sep 2023 14:22:58 +0200 Subject: [PATCH] Slight tweaks to bring the page closer to the design --- src/components/Jumbotron/index.tsx | 9 ++------- src/components/TextContent/index.tsx | 15 ++++++++++----- src/css/custom.css | 3 +-- src/pages/manifesto.tsx | 8 ++++++-- tailwind.config.js | 8 ++++++++ 5 files changed, 27 insertions(+), 16 deletions(-) diff --git a/src/components/Jumbotron/index.tsx b/src/components/Jumbotron/index.tsx index 9a24a6e1..3cced83c 100644 --- a/src/components/Jumbotron/index.tsx +++ b/src/components/Jumbotron/index.tsx @@ -7,14 +7,9 @@ type JumbotronProps = { export default function Jumbotron({ children }: JumbotronProps) { return ( -
Terraform was open-sourced in 2014 under the Mozilla Public License (v2.0) (the “MPL”). Over the next ~9 years, it built up a community diff --git a/tailwind.config.js b/tailwind.config.js index 51467060..d5e25438 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,12 +4,20 @@ module.exports = { theme: { extend: { colors: { + fontSize: { + "5xl": "2.5rem", + }, primary: { base: "#933EFF", hover: "#7732D0", }, gray: { + 900: "#1B1D20", 700: "#505661", + 600: "#6A7382", + 150: "#DADEE3", + 100: "#E7E9EC", + 50: "#F9F9F9", }, brand: "#933EFF", brandMuted: "#AA4EE7",