refining css

This commit is contained in:
Antoine M 2024-01-11 08:55:13 +01:00
parent 0e477899a5
commit f043a1d18d

View File

@ -38,7 +38,9 @@
} */ } */
&__navlist { &__navlist {
@apply lg:flex @apply w-fit
mx-auto
lg:flex
justify-center justify-center
/* relative */; /* relative */;
@ -57,26 +59,20 @@
} }
/* Generic Submenu Item */ /* Generic Submenu Item */
.sub-menu { .sub-menu {
@apply fixed @apply z-50
z-50
top-0
left-0 left-0
min-h-screen min-h-screen
w-full w-full
py-8 py-8
px-12
xl:px-0
fixed
lg:absolute lg:absolute
top-[5.5rem]
lg:top-0
lg:min-h-0 lg:min-h-0
bottom-0 bottom-0;
/* lg:w-screen
lg:max-w-3xl */
/* -bottom-2 */;
/* background: white; */
/* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
/* left: 0; */
/* width: 100%; */
/* margin: 0 calc(50% - 50vw); */
isolation: isolate; isolation: isolate;
&:after { &:after {
@ -104,6 +100,10 @@
} }
&--open { &--open {
@apply block; @apply block;
touch-action: none;
body {
overflow: hidden;
}
} }
} }
@ -187,7 +187,7 @@
transform: rotate(180deg); transform: rotate(180deg);
} }
&__submenu-close { &__submenu-close {
@apply absolute text-right top-8 right-0 w-fit h-auto rounded-full outline-offset-4; @apply absolute text-right top-8 right-12 xl:right-0 w-fit h-auto rounded-full outline-offset-4;
width: fit-content; width: fit-content;
padding: 0; padding: 0;
} }
@ -196,6 +196,7 @@
@apply /* bg-white */ @apply /* bg-white */
order-3 order-3
lg:order-2 lg:order-2
mx-auto
w-full w-full
lg:w-fit; lg:w-fit;
} }
@ -269,6 +270,11 @@
} }
} }
/* Handling background page scroll */
body:has(.menu-renovateur .sub-menu--open) {
@apply overflow-hidden;
}
.menu-renovateur--footer { .menu-renovateur--footer {
@apply p-0 shadow-none w-full; @apply p-0 shadow-none w-full;
.menu-renovateur__navlist-container { .menu-renovateur__navlist-container {