Implémentation des modifs v3
Release Creation / build (release) Failing after 1m30s

This commit is contained in:
2026-05-12 00:17:42 +02:00
parent b44918fded
commit 03c3f1757e
8 changed files with 141 additions and 50 deletions
+52
View File
@@ -504,6 +504,58 @@
&.experience {
flex: 100%;
height: calc(100% - 4rem);
.xp-summary {
display: flex;
flex-direction: row;
align-items: center;
background: rgba($l5r5e-red, 0.08);
border: 1px solid rgba($l5r5e-red, 0.3);
border-radius: 4px;
padding: 0.3rem 0.75rem;
margin-bottom: 0.5rem;
gap: 0;
.xp-block {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.4rem;
flex: 1;
justify-content: center;
padding: 0 0.5rem;
.xp-label {
font-size: 0.75rem;
text-transform: uppercase;
color: $l5r5e-title;
letter-spacing: 0.04em;
white-space: nowrap;
}
.xp-value {
font-family: $font-secondary;
font-size: 1rem;
font-weight: bold;
color: $l5r5e-red;
width: 3.5rem;
text-align: center;
background: rgba($l5r5e-red, 0.06);
border: 1px solid rgba($l5r5e-red, 0.25);
border-radius: 3px;
padding: 0.1rem 0.25rem;
&:disabled {
opacity: 0.75;
cursor: default;
}
}
}
.xp-block + .xp-block {
border-left: 1px solid rgba($l5r5e-red, 0.25);
}
}
}
}
}