diff --git a/mandelstudio/static/mandelstudio/css/layout_overrides.css b/mandelstudio/static/mandelstudio/css/layout_overrides.css index d949480..270aecc 100644 --- a/mandelstudio/static/mandelstudio/css/layout_overrides.css +++ b/mandelstudio/static/mandelstudio/css/layout_overrides.css @@ -104,20 +104,20 @@ header .header-right{display:flex;align-items:center;gap:0.5rem}header .header-r } @media (max-width: 767.98px){ .te-modern-saas .te-block--saas-hero-banner .saas-hero.saas-hero--split .saas-hero__stats{ - width:100%; - max-width:100%; + width:100% !important; + max-width:100% !important; gap:.625rem; - grid-template-columns:minmax(0, 1fr) + grid-template-columns:minmax(0, 1fr) !important } .te-modern-saas .te-block--saas-hero-banner .saas-hero.saas-hero--split .saas-hero__stat{ - width:100%; - min-width:0; + width:100% !important; + min-width:0 !important; padding:.75rem .875rem } .te-modern-saas .te-block--saas-hero-banner .saas-hero.saas-hero--split .saas-hero__stat-value, .te-modern-saas .te-block--saas-hero-banner .saas-hero.saas-hero--split .saas-hero__stat-label{ - white-space:normal; - overflow-wrap:break-word; - word-break:normal + white-space:normal !important; + overflow-wrap:break-word !important; + word-break:normal !important } } diff --git a/mandelstudio/static/mandelstudio/scss/layout_overrides.scss b/mandelstudio/static/mandelstudio/scss/layout_overrides.scss index 9cfc1ef..71d9089 100644 --- a/mandelstudio/static/mandelstudio/scss/layout_overrides.scss +++ b/mandelstudio/static/mandelstudio/scss/layout_overrides.scss @@ -494,23 +494,23 @@ body.cookie-consent-open { @media (max-width: 767.98px) { .te-modern-saas .te-block--saas-hero-banner .saas-hero.saas-hero--split { .saas-hero__stats { - width: 100%; - max-width: 100%; + width: 100% !important; + max-width: 100% !important; gap: 0.625rem; - grid-template-columns: minmax(0, 1fr); + grid-template-columns: minmax(0, 1fr) !important; } .saas-hero__stat { - width: 100%; - min-width: 0; + width: 100% !important; + min-width: 0 !important; padding: 0.75rem 0.875rem; } .saas-hero__stat-value, .saas-hero__stat-label { - white-space: normal; - overflow-wrap: break-word; - word-break: normal; + white-space: normal !important; + overflow-wrap: break-word !important; + word-break: normal !important; } } }