feat: Ajouter un bouton de démo dans l'en-tête et améliorer la gestion des classes CSS pour la réactivité

This commit is contained in:
Boris Waaub
2026-03-10 11:26:24 +01:00
parent 65813b6520
commit 45b6edadf9
3 changed files with 52 additions and 23 deletions

View File

@@ -2395,6 +2395,14 @@ body {
margin-top: auto;
}
.mr-8 {
margin-right: 2rem;
}
.ml-8 {
margin-left: 2rem;
}
.line-clamp-2 {
overflow: hidden;
display: -webkit-box;
@@ -2551,6 +2559,10 @@ body {
width: 100%;
}
.w-auto {
width: auto;
}
.\!max-w-none {
max-width: none !important;
}
@@ -2615,6 +2627,10 @@ body {
flex-shrink: 0;
}
.shrink-0 {
flex-shrink: 0;
}
.flex-grow {
flex-grow: 1;
}
@@ -2796,6 +2812,12 @@ body {
margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.space-x-12 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(3rem * var(--tw-space-x-reverse));
margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-hidden {
overflow: hidden;
}
@@ -4738,6 +4760,14 @@ body {
margin-top: 6rem;
}
.lg\:flex {
display: flex;
}
.lg\:hidden {
display: none;
}
.lg\:w-1\/4 {
width: 25%;
}