Refactor: consolider toutes les variables CSS dans variables.css
- variables.css : z-index, couleurs et font-sizes au même endroit - layout.css, buttons.css : z-index: 1 → var(--z-base) - Suppression de src/style.css (fichier mort, jamais importé) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b7d825b2f0
commit
dc66d57306
4 changed files with 27 additions and 319 deletions
|
|
@ -15,27 +15,27 @@
|
|||
|
||||
/* Vertical Lines */
|
||||
.vertical-line {
|
||||
z-index: 1;
|
||||
z-index: var(--z-base);
|
||||
border-left: 0.1px solid rgba(238, 238, 238, 0.2);
|
||||
height: 150%;
|
||||
}
|
||||
|
||||
.vertical-line-start {
|
||||
z-index: 1;
|
||||
z-index: var(--z-base);
|
||||
border-left: 0.1px solid rgba(238, 238, 238, 0.2);
|
||||
grid-area: 1/6 / span 20 / span 1;
|
||||
height: 150%;
|
||||
}
|
||||
|
||||
.vertical-line-center {
|
||||
z-index: 1;
|
||||
z-index: var(--z-base);
|
||||
border-left: 0.1px solid rgba(238, 238, 238, 0.2);
|
||||
grid-area: 1/11 / span 20 / span 1;
|
||||
height: 150%;
|
||||
}
|
||||
|
||||
.vertical-line-end {
|
||||
z-index: 1;
|
||||
z-index: var(--z-base);
|
||||
border-left: 0.1px solid rgba(238, 238, 238, 0.2);
|
||||
grid-area: 1/16 / span 20 / span 1;
|
||||
height: 150%;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue