From 5d64b9649bf8ef0d1762985752e825e3f928e111 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Sat, 3 Jun 2023 13:43:37 +0200 Subject: [PATCH] Remove useless max-2xl --- src/components/timeline/Timeline.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/timeline/Timeline.scss b/src/components/timeline/Timeline.scss index 6c8eb53..68ea633 100644 --- a/src/components/timeline/Timeline.scss +++ b/src/components/timeline/Timeline.scss @@ -8,7 +8,7 @@ @apply mb-12 relative flex; & > details { - @apply w-4/5 md:max-2xl:w-2/5 left-[10%] md:max-2xl:left-0 rounded-xl overflow-hidden relative bg-[#f5f5f5]; + @apply w-4/5 md:w-2/5 left-[10%] md:left-0 rounded-xl overflow-hidden relative bg-[#f5f5f5]; box-shadow: 3px 3px 12px #dee1e4, -3px -3px 12px #fff; & > summary { @@ -34,18 +34,18 @@ // Place point in center line &:before { - @apply content-[""] w-6 h-6 rounded-[50%] absolute top-5 left-0 md:max-2xl:left-1/2 bg-[#f8f8f8] -ml-2 z-50; + @apply content-[""] w-6 h-6 rounded-[50%] absolute top-5 left-0 md:left-1/2 bg-[#f8f8f8] -ml-2 z-50; box-shadow: 2px 2px 5px #dee1e4, -2px -2px 5px #fff; } &:nth-child(even) { - @apply md:max-2xl:justify-end; + @apply md:justify-end; } } // Draw center line &:before { - @apply top-0 bottom-0 left-0 md:max-2xl:left-1/2 absolute content-[""] w-2 bg-[#f5f5f5]; + @apply top-0 bottom-0 left-0 md:left-1/2 absolute content-[""] w-2 bg-[#f5f5f5]; box-shadow: 1px 1px 5px #dee1e4, -1px -1px 5px #fff; } }