From 972132762b1939763ca1b0230b4f7a6e0577b110 Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Tue, 17 Jun 2025 10:45:54 -0700 Subject: [PATCH] four col thing --- dist/app.css | 6 ++++++ dist/mix-manifest.json | 2 +- src/scss/flex-four-column-blocks.scss | 5 +++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/dist/app.css b/dist/app.css index 7c1a5fb..753ae2a 100644 --- a/dist/app.css +++ b/dist/app.css @@ -12781,12 +12781,18 @@ section.four-column-blocks .col { gap: 1rem; align-items: center; border-right: 1px solid #000; + padding-top: 1rem; + padding-bottom: 1rem; } section.four-column-blocks .col:last-of-type { border: 0; } section.four-column-blocks .icon-wrapper { color: #c80000; + padding-left: 1rem; +} +section.four-column-blocks .content-wrapper { + padding-right: 1rem; } section.four-column-blocks .content-wrapper strong { display: block; diff --git a/dist/mix-manifest.json b/dist/mix-manifest.json index cd50c19..db4cd01 100644 --- a/dist/mix-manifest.json +++ b/dist/mix-manifest.json @@ -1,4 +1,4 @@ { "/app.js": "/app.js?id=8af0c9c0d989b79afe124f8138dc1a63", - "/app.css": "/app.css?id=9538c91b190c20fbd994469becc39f79" + "/app.css": "/app.css?id=3e31fee00218b53564f3cf70a04049f4" } diff --git a/src/scss/flex-four-column-blocks.scss b/src/scss/flex-four-column-blocks.scss index 4ea91cb..0d859aa 100644 --- a/src/scss/flex-four-column-blocks.scss +++ b/src/scss/flex-four-column-blocks.scss @@ -6,6 +6,8 @@ section.four-column-blocks { gap: 1rem; align-items: center; border-right: 1px solid $c-black; + padding-top: 1rem; + padding-bottom: 1rem; &:last-of-type { border: 0; @@ -14,9 +16,12 @@ section.four-column-blocks { .icon-wrapper { color: $c-brightRed; + padding-left: 1rem; } .content-wrapper { + padding-right: 1rem; + strong { display: block; }