[Feature] Reload Check (#2051)
Some checks are pending
Project CI / build (24.x) (push) Waiting to run

This commit is contained in:
WBHarry 2026-07-21 02:08:52 +02:00 committed by GitHub
parent 8d68166e4c
commit 26bcc2dddc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 223 additions and 14 deletions

View file

@ -271,6 +271,28 @@
}
}
.roll-reload-container {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
.reload-warning {
display: flex;
align-items: center;
border-radius: 5px;
width: fit-content;
gap: 5px;
cursor: pointer;
padding: 5px;
transition: all 0.3s ease;
color: @beige;
background: @red-40;
outline: 1px solid @red;
}
}
.roll-part-extra {
display: flex;
justify-content: center;
@ -622,15 +644,19 @@
.roll-buttons {
display: flex;
flex-wrap: wrap;
gap: 5px;
width: 100%;
margin-top: 8px;
button {
height: 32px;
flex: 1;
height: 36px;
flex: 1 1 calc(50% - 5px);
font-family: @font-body;
font-weight: 700;
&.end-button {
flex: 0;
&:nth-last-child(1):nth-child(odd) {
flex-basis: 100%;
}
}
}