STYLE refining secondary nav padding and network redirector
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2025-06-19 14:56:00 +02:00
parent 4196e341ce
commit b7086c2666

View File

@ -149,16 +149,38 @@
} }
} }
.secondary-menu-container { .secondary-menu-container {
@apply bg-primary flex justify-between items-center px-8 @apply bg-primary items-center px-8 py-4
2xl:px-32; 2xl:px-32;
a { a {
@apply text-white; @apply text-white;
} }
.secondary-menu-nav { .secondary-menu-nav {
@apply max-w-screen-2xl w-full mx-auto flex justify-between items-center;
ul { ul {
@apply flex justify-between gap-4; @apply flex justify-between gap-4;
} }
a {
@apply font-medium text-xl;
}
.network-redirector {
a {
@apply flex items-center gap-4;
&:after {
transition: all 0.3s ease-out;
@apply w-8 h-8 bg-no-repeat bg-contain bg-center text-xl;
filter: invert(1);
content: '';
background-image: url('../resources/img/carhop-fleche-lien-externe-full.svg');
display: inline-block;
}
&:hover {
&:after {
@apply translate-x-2 rotate-45;
}
}
}
}
} }
} }
button#burger-menu-toggle { button#burger-menu-toggle {