Replace solidarity drivers

This commit is contained in:
Arnaud Delcasse
2025-10-16 17:25:59 +02:00
parent ee0bcd01b7
commit bf15e114f3
5 changed files with 133 additions and 6 deletions

View File

@@ -58,6 +58,7 @@
--container-lg: 32rem;
--container-2xl: 42rem;
--container-3xl: 48rem;
--container-6xl: 72rem;
--container-7xl: 80rem;
--text-xs: 0.75rem;
--text-xs--line-height: calc(1 / 0.75);
@@ -352,9 +353,15 @@
.z-10 {
z-index: 10;
}
.z-20 {
z-index: 20;
}
.z-40 {
z-index: 40;
}
.z-50 {
z-index: 50;
}
.z-auto {
z-index: auto;
}
@@ -881,6 +888,9 @@
.max-w-3xl {
max-width: var(--container-3xl);
}
.max-w-6xl {
max-width: var(--container-6xl);
}
.max-w-7xl {
max-width: var(--container-7xl);
}