This commit is contained in:
WBHarry 2026-03-12 15:08:39 +01:00
parent 43114187b9
commit f78b4d1789
5 changed files with 370 additions and 57 deletions

View file

@ -11,9 +11,17 @@
.member-container {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 8px;
flex: 1;
.data-container {
display: flex;
flex-direction: column;
gap: 8px;
width: 100%;
}
.member-info {
display: flex;
align-items: center;
@ -33,6 +41,10 @@
}
}
.roll-setup {
width: 100%;
}
.roll-tools {
width: 100%;
display: flex;
@ -92,6 +104,10 @@
font-size: var(--font-size-20);
font-weight: bold;
text-align: center;
.unused-damage {
text-decoration: line-through;
}
}
.roll-dice-container {
@ -131,6 +147,34 @@
padding: 3px;
}
}
.select-roll-button i {
color: light-dark(@dark-blue, @golden);
font-size: 48px;
&.inactive {
opacity: 0.4;
}
}
}
}
.finish-container {
display: flex;
flex-direction: column;
gap: 16px;
text-align: center;
.damage-info {
font-size: var(--font-size-20);
}
.hint {
height: 18px;
}
button {
flex: 1;
}
}
}