From 7d9725be795bca3a3174612e90c7135537ace50d Mon Sep 17 00:00:00 2001 From: Emmanuel Pelletier Date: Fri, 21 Jun 2024 15:25:12 +0200 Subject: [PATCH] gaufre css reset: make sure to reset everything this is made in case the gaufre is in a website doing stuff on after/before pseudo elements by default (the dsfr on for example) --- website/src/components/GaufrePage.astro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/src/components/GaufrePage.astro b/website/src/components/GaufrePage.astro index f46dd48..13c2bc2 100644 --- a/website/src/components/GaufrePage.astro +++ b/website/src/components/GaufrePage.astro @@ -38,7 +38,9 @@ const { services } = Astro.props } .lagaufre, - :where(.lagaufre) * { + :where(.lagaufre) *, + :where(.lagaufre) *::before, + :where(.lagaufre) *::after { all: revert !important; box-sizing: border-box !important; }