This commit is contained in:
2026-02-18 22:14:59 +04:00
parent 432917bba2
commit ad3230d924
2 changed files with 26 additions and 3 deletions

View File

@@ -92,9 +92,16 @@ const { eras } = Astro.props;
}
/* Autre exemple pour une ère future */
.era-chip.active[data-era="foret-sombre"] {
background-color: #2d4a22; /* Vert sombre */
border-color: #2d4a22;
.era-chip.active[data-era="prelude"] {
background-color: #3c86c8; /* Vert sombre */
border-color: #3c86c8;
}
/* Changement au survol pour cette ère spécifique si non active */
.era-chip[data-era="prelude"]:hover:not(.active) {
border-color: #3c86c8;
background: #fffafa;
color: #3c86c8;
}
.scribe-icon {