From f970c16c938b2606a797b17a1c6d8e875e57499f Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Mon, 2 Jun 2025 17:00:56 -0700 Subject: [PATCH] WIP --- dist/app.css | 3 +++ dist/mix-manifest.json | 2 +- src/scss/flex-blue-background-grid.scss | 10 +++++++--- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/dist/app.css b/dist/app.css index ece1291..15ecb62 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12634,6 +12634,9 @@ section.blue-background-grid .blocks { flex-direction: row; flex-wrap: wrap; } + section.blue-background-grid .blocks .block { + width: 50%; + } section.blue-background-grid .blocks .block:first-of-type { width: 100%; padding-right: 50%; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index 4131723..fda4d59 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=f9aa068377e8f0a7fc252e84458abffd" + "/app.css": "/app.css?id=70dd4944c819191291fb9595329f064f" } diff --git a/src/scss/flex-blue-background-grid.scss b/src/scss/flex-blue-background-grid.scss index 3a7e017..06b295b 100644 --- a/src/scss/flex-blue-background-grid.scss +++ b/src/scss/flex-blue-background-grid.scss @@ -29,9 +29,13 @@ section.blue-background-grid { flex-direction: row; flex-wrap: wrap; - .block:first-of-type { - width: 100%; - padding-right: 50%; + .block { + width: 50%; + + &:first-of-type { + width: 100%; + padding-right: 50%; + } } }