improve color selection for Admin and improve generic label lists

This commit is contained in:
Lisa Durand 2024-10-28 14:33:57 +01:00
parent 725a97da7e
commit 507ea70398
No known key found for this signature in database
GPG key ID: 0DF91F2CA1E8B816
8 changed files with 51 additions and 43 deletions

View file

@ -5,18 +5,11 @@ $colors: "green-tilleul-verveine",
"green-bourgeon",
"green-emeraude",
"green-menthe",
"green-archipel",
"blue-ecume",
"blue-cumulus",
"purple-glycine",
"pink-macaron",
"pink-tuile",
"yellow-tournesol",
"yellow-moutarde",
"orange-terre-battue",
"brown-cafe-creme",
"brown-caramel",
"brown-opera",
"beige-gris-galet";
@ -35,3 +28,15 @@ $colors: "green-tilleul-verveine",
color: var(--text-action-high-#{$color});
}
}
.grid-tags {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 62em) {
.grid-tags {
display: grid;
grid-template-columns: repeat(5, 1fr);
}
}