From a7da98207dca036aeb83237e1f63c2327ad4072d Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Tue, 13 May 2025 15:14:44 -0700 Subject: [PATCH] WIP --- dist/app.css | 12 +++++++----- dist/mix-manifest.json | 2 +- src/scss/header.scss | 6 ++++++ src/scss/team-members.scss | 4 +--- 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/dist/app.css b/dist/app.css index 70e43de..c459ed0 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12048,13 +12048,13 @@ a { } } -.headline-lg, section.grid-callout h2, section.grid-callout .h2, section.flex-5050-cta h2, section.flex-5050-cta .h2, section.multiblock-callout h2, section.multiblock-callout .h2, .text-over-image-b .content-wrapper .content h2, .text-over-image-b .content-wrapper .content .h2, section.side-by-side-text h2, section.side-by-side-text .h2 { +.headline-lg, .post-type-archive-team-member .team-members h2, .post-type-archive-team-member .team-members .h2, section.grid-callout h2, section.grid-callout .h2, section.flex-5050-cta h2, section.flex-5050-cta .h2, section.multiblock-callout h2, section.multiblock-callout .h2, .text-over-image-b .content-wrapper .content h2, .text-over-image-b .content-wrapper .content .h2, section.side-by-side-text h2, section.side-by-side-text .h2 { font-size: 40px; line-height: 40px; margin-bottom: 2rem; } @media (min-width: 768px) { - .headline-lg, section.grid-callout h2, section.grid-callout .h2, section.flex-5050-cta h2, section.flex-5050-cta .h2, section.multiblock-callout h2, section.multiblock-callout .h2, .text-over-image-b .content-wrapper .content h2, .text-over-image-b .content-wrapper .content .h2, section.side-by-side-text h2, section.side-by-side-text .h2 { + .headline-lg, .post-type-archive-team-member .team-members h2, .post-type-archive-team-member .team-members .h2, section.grid-callout h2, section.grid-callout .h2, section.flex-5050-cta h2, section.flex-5050-cta .h2, section.multiblock-callout h2, section.multiblock-callout .h2, .text-over-image-b .content-wrapper .content h2, .text-over-image-b .content-wrapper .content .h2, section.side-by-side-text h2, section.side-by-side-text .h2 { font-size: 70px; line-height: 70px; margin-bottom: 3rem; @@ -12121,6 +12121,11 @@ a { height: 50px; } } +@media (max-width: 575.98px) { + .top-nav .logo-wrapper img { + max-width: 250px; + } +} @media (min-width: 768px) { .top-nav .logo-wrapper #mobile-nav-toggle { display: none; @@ -12519,9 +12524,6 @@ section.large-quote .quote p.attribution { .post-type-archive-team-member .team-members h2, .post-type-archive-team-member .team-members .h2 { color: #063C5A; margin-top: 6rem; - margin-bottom: 4rem; - font-size: 70px; - line-height: 70px; width: 100%; max-width: 956px; } diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index 56ea3bf..254c11f 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e", - "/app.css": "/app.css?id=4b4730a6317f00596f55888bab64e25f" + "/app.css": "/app.css?id=bca903bb0343beb6ce0e79f88c3a7e85" } diff --git a/src/scss/header.scss b/src/scss/header.scss index ecea210..2091c13 100644 --- a/src/scss/header.scss +++ b/src/scss/header.scss @@ -27,6 +27,12 @@ } } + @include media-breakpoint-down(sm) { + img { + max-width: 250px; + } + } + #mobile-nav-toggle { @include media-breakpoint-up(md) { display: none; diff --git a/src/scss/team-members.scss b/src/scss/team-members.scss index cf862cc..ed33075 100644 --- a/src/scss/team-members.scss +++ b/src/scss/team-members.scss @@ -6,11 +6,9 @@ .team-members { h2 { @extend .goudy; + @extend .headline-lg; color: $c-navy; margin-top: 6rem; - margin-bottom: 4rem; - font-size: 70px; - line-height: 70px; width: 100%; max-width: 956px; }