Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/assets/css/base/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ html,
body {
height: 100%;
min-height: 100%;
line-height: 2;
line-height: 1.5;
font-family: var(--font-base);
font-size: 1rem;
color: var(--color-body-text);
Expand All @@ -149,7 +149,7 @@ html {

body {
font-size: 1rem;
line-height: 2;
line-height: 1.5;

&.menu-open {
overflow: hidden;
Expand Down
14 changes: 7 additions & 7 deletions src/assets/css/base/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ h1,
margin: 0;
font-family: var(--font-base);
font-weight: 700;
font-size: clamp(2.5rem, -0.5rem + 6.25vw, 4rem);
line-height: 1.3;
font-size: clamp(3rem, 0.25rem + 7vw, 5rem);
line-height: 1.1;
text-transform: none;
letter-spacing: 0;
}
Expand All @@ -17,7 +17,7 @@ h2,
font-family: var(--font-base);
font-weight: 700;
font-size: clamp(2.25rem, -0.25rem + 5.2083vw, 3.5rem);
line-height: 1.3;
line-height: 1.1;
text-transform: none;
letter-spacing: 0;
}
Expand All @@ -28,7 +28,7 @@ h3,
font-family: var(--font-base);
font-weight: 700;
font-size: clamp(2rem, 0rem + 4.1667vw, 3rem);
line-height: 1.25;
line-height: 1.2;
text-transform: none;
letter-spacing: 0;
}
Expand All @@ -39,7 +39,7 @@ h4,
font-family: var(--font-base);
font-weight: 700;
font-size: clamp(1.75rem, 1.25rem + 1.0417vw, 2rem);
line-height: 1.5;
line-height: 1.3;
letter-spacing: 0;
}

Expand All @@ -49,13 +49,13 @@ h5,
font-family: var(--font-base);
font-weight: 500;
font-size: clamp(1rem, 0.75rem + 0.5208vw, 1.125rem);
line-height: 1.5;
line-height: 1.4;
letter-spacing: 0;
}

body {
font-size: 1.5rem;
line-height: 2;
line-height: 1.5;
}

.large {
Expand Down
1 change: 1 addition & 0 deletions src/assets/css/base/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
:root {
--color-black: #000000;
--color-purple: #6200ee;
--color-purple-dark: #42009f;
--color-yellow: #ffc400;
--color-aqua: #02ceba;
--color-blue: #307fee;
Expand Down
6 changes: 3 additions & 3 deletions src/assets/css/components/_color-hero.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
background-color: var(--color-purple);
--color-animation: var(--color-aqua);
--color-link-background: var(--color-blue);
--color-overlay: var(--color-purple);
--color-overlay: var(--color-purple-dark);
--color-link-primary: var(--color-purple);
--color-link-primary-hover: var(--color-aqua);
color: var(--color-white);
Expand Down Expand Up @@ -88,7 +88,7 @@
}

.color-hero__text {
max-width: 45rem;
max-width: 40rem;
}

.color-hero__eyebrow {
Expand All @@ -104,7 +104,7 @@
display: flex;
position: relative;
width: 100%;
padding: 25vh 0 10vh;
padding: 25vh 2vw 10vh;
}

.color-hero {
Expand Down
1 change: 0 additions & 1 deletion src/components/layouts/post.njk
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ type: post
%}
{{ imageAspectRatio(imageData, "32/13", "35/19") }}
{% endif %}
{{ serviceCta(tags, customCta) }}
<div class="post">
<div class="post__content rte container container--lg ">{{ content | safe }}</div>
{{ serviceCta(tags, customCta) }}
Expand Down
Loading