Add toggle for critical damage

This commit is contained in:
Carlos Fernandez 2026-04-01 02:32:36 -04:00
parent 90d58a55ee
commit cb19e1d96f
6 changed files with 51 additions and 2 deletions

View file

@ -17,6 +17,30 @@
}
}
.bonuses {
gap: 4px;
.critical-chip {
flex: 0;
display: flex;
align-items: center;
border-radius: 5px;
width: fit-content;
gap: 5px;
cursor: pointer;
padding: 5px;
transition: all 0.3s ease;
background: @green-10;
color: @green;
&.selected {
color: @beige;
background: @gradient-green;
}
}
}
.damage-section-controls {
display: flex;
align-items: center;