From 909367c56c25640409e6fb7850c1b7e7811deb2b Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Mon, 2 Jun 2025 16:59:42 -0700 Subject: [PATCH] WIP --- dist/app.css | 8 +++++++- dist/mix-manifest.json | 2 +- src/scss/flex-blue-background-grid.scss | 9 ++++++++- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/dist/app.css b/dist/app.css index e462558..ece1291 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12622,6 +12622,8 @@ section.blue-background-grid svg { width: 25%; height: auto; opacity: 0.5; + top: 0; + right: 0; } section.blue-background-grid .blocks { display: flex; @@ -12633,10 +12635,14 @@ section.blue-background-grid .blocks { flex-wrap: wrap; } section.blue-background-grid .blocks .block:first-of-type { - width: 50%; + width: 100%; padding-right: 50%; } } +section.blue-background-grid .blocks h3, section.blue-background-grid .blocks .h3 { + color: #B9AF78; + font-weight: bold; +} .post-type-archive-team-member .team-members h2, .post-type-archive-team-member .team-members .h2 { color: #063C5A; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index b25ae98..4131723 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=5c4b271ea53fee7f61a092337395cc64" + "/app.css": "/app.css?id=f9aa068377e8f0a7fc252e84458abffd" } diff --git a/src/scss/flex-blue-background-grid.scss b/src/scss/flex-blue-background-grid.scss index a4094f9..3a7e017 100644 --- a/src/scss/flex-blue-background-grid.scss +++ b/src/scss/flex-blue-background-grid.scss @@ -17,6 +17,8 @@ section.blue-background-grid { width: 25%; height: auto; opacity: 0.5; + top: 0; + right: 0; } .blocks { @@ -28,9 +30,14 @@ section.blue-background-grid { flex-wrap: wrap; .block:first-of-type { - width: 50%; + width: 100%; padding-right: 50%; } } + + h3 { + color: $c-tan; + font-weight: bold; + } } }