From 3637875a718377baf1de221f193fb32546c0f0f0 Mon Sep 17 00:00:00 2001
From: adilallo <39313955+adilallo@users.noreply.github.com>
Date: Sun, 24 Aug 2025 20:58:19 -0600
Subject: [PATCH] Rule Stack lg breakpoint
---
app/components/RuleCard.js | 12 ++++++------
app/components/RuleStack.js | 12 ++++++------
app/components/SectionHeader.js | 4 ++--
3 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/app/components/RuleCard.js b/app/components/RuleCard.js
index b70bcd7..245e7ac 100644
--- a/app/components/RuleCard.js
+++ b/app/components/RuleCard.js
@@ -9,27 +9,27 @@ const RuleCard = ({
}) => {
return (
{/* Header Container */}
-
+
{/* Icon Container */}
{icon && (
-
+
{icon}
)}
{/* Title Container */}
{title && (
-
{description && (
-
+
{description}
)}
diff --git a/app/components/RuleStack.js b/app/components/RuleStack.js
index 674efde..6e4d97c 100644
--- a/app/components/RuleStack.js
+++ b/app/components/RuleStack.js
@@ -8,14 +8,14 @@ import Image from "next/image";
const RuleStack = ({ children, className = "" }) => {
return (
-
+
{
alt="Sociocracy"
width={40}
height={40}
- className="md:w-[56px] md:h-[56px]"
+ className="md:w-[56px] md:h-[56px] lg:w-[90px] lg:h-[90px]"
/>
}
backgroundColor="bg-[var(--color-surface-default-brand-lime)]"
@@ -39,7 +39,7 @@ const RuleStack = ({ children, className = "" }) => {
alt="Consensus"
width={40}
height={40}
- className="md:w-[56px] md:h-[56px]"
+ className="md:w-[56px] md:h-[56px] lg:w-[90px] lg:h-[90px]"
/>
}
backgroundColor="bg-[var(--color-surface-default-brand-rust)]"
@@ -53,7 +53,7 @@ const RuleStack = ({ children, className = "" }) => {
alt="Elected Board"
width={40}
height={40}
- className="md:w-[56px] md:h-[56px]"
+ className="md:w-[56px] md:h-[56px] lg:w-[90px] lg:h-[90px]"
/>
}
backgroundColor="bg-[var(--color-surface-default-brand-red)]"
@@ -67,7 +67,7 @@ const RuleStack = ({ children, className = "" }) => {
alt="Petition"
width={40}
height={40}
- className="md:w-[56px] md:h-[56px]"
+ className="md:w-[56px] md:h-[56px] lg:w-[90px] lg:h-[90px]"
/>
}
backgroundColor="bg-[var(--color-surface-default-brand-teal)]"
diff --git a/app/components/SectionHeader.js b/app/components/SectionHeader.js
index 11ab930..feb9c72 100644
--- a/app/components/SectionHeader.js
+++ b/app/components/SectionHeader.js
@@ -8,7 +8,7 @@ const SectionHeader = ({ title, subtitle, titleLg, variant = "default" }) => {
@@ -22,7 +22,7 @@ const SectionHeader = ({ title, subtitle, titleLg, variant = "default" }) => {