From 9b00b9dc6de0abbba880be23d163878d4c078655 Mon Sep 17 00:00:00 2001 From: ugtthis Date: Tue, 25 Nov 2025 23:57:31 -0600 Subject: [PATCH 1/2] add car harness --- src/routes/shop/comma-four/+page.svelte | 27 +++++++++++++++---------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/src/routes/shop/comma-four/+page.svelte b/src/routes/shop/comma-four/+page.svelte index edb1061d..46ec9142 100644 --- a/src/routes/shop/comma-four/+page.svelte +++ b/src/routes/shop/comma-four/+page.svelte @@ -11,6 +11,7 @@ import FourImage from "$lib/images/products/comma-four/four_screen_on.png"; import OBDCCableImage from "$lib/images/products/obd-c-cable/obd-c-cable-four.png"; import ReplacementMountsImage from "$lib/images/products/replacement-mounts/replacement-mounts-four.png"; + import CarHarnessImage from "$lib/images/products/car-harness/car-harness.jpg"; import CarBrandCollageImage from "$lib/images/car-brand-collage.jpg"; import CoolingImage from "$lib/images/products/comma-four/cooling.png"; import DeviceFrameImage from "$lib/images/products/comma-four/four_front.png"; @@ -64,6 +65,10 @@ mount

2 mounts

+
+ car harness +

car harness (optional)

+

@@ -389,21 +394,21 @@ } & .box-contents { - display: flex; - flex-wrap: wrap; + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 2rem; text-align: center; - & > div { - width: 300px; - margin-bottom: 2rem; + @media screen and (max-width: 768px) { + grid-template-columns: 1fr; + } - & img { - max-height: 150px; - } + & img { + max-height: 150px; + } - & p { - margin: 0 2rem; - } + & p { + margin: 0 2rem; } } From 9c3f15ade5bbb005448b3866da4e78c3966f4221 Mon Sep 17 00:00:00 2001 From: ugtthis Date: Wed, 26 Nov 2025 15:57:43 -0600 Subject: [PATCH 2/2] retrigger CI