Small Fixes (#540)

* Small Fixes

* Remove console.log & comments
This commit is contained in:
Dapoulp 2025-08-03 15:01:43 +02:00 committed by GitHub
parent b9b657e985
commit f7a29c0029
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 117 additions and 115 deletions

View file

@ -520,13 +520,16 @@
flex-wrap: wrap;
.roll-die {
display: flex;
flex-direction: column;
display: grid;
grid-template-areas:
". a a"
"c b b";
gap: 3px;
label {
text-align: center;
height: var(--font-size-12);
grid-area: a;
}
> div {
@ -534,7 +537,17 @@
align-items: center;
justify-content: center;
gap: 5px;
// font-size: var(--font-size-20);
grid-area: b;
}
&.has-plus:before {
content: '+';
font-size: var(--font-size-20);
grid-area: c;
display: flex;
align-items: center;
justify-content: center;
width: 15px;
}
}
}
@ -542,7 +555,6 @@
fieldset {
display: flex;
flex-direction: column;
// gap: 10px;
border-color: var(--text-color);
border-radius: 5px;
@ -732,9 +744,6 @@
.dice-roll .dice-tooltip fieldset {
margin-bottom: 5px;
.roll-dice {
gap: 10px;
}
}
}
}