mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-22 02:19:54 +02:00
[Feature] Reload Check (#2051)
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
This commit is contained in:
parent
8d68166e4c
commit
26bcc2dddc
22 changed files with 223 additions and 14 deletions
|
|
@ -144,6 +144,10 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
|
||||
.unloaded {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -133,6 +133,11 @@
|
|||
height: 40px;
|
||||
flex: 1 1 calc(50% - 5px);
|
||||
|
||||
span {
|
||||
font-family: @font-body;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
&:nth-last-child(1):nth-child(odd) {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,9 +46,14 @@
|
|||
padding: 0 8px;
|
||||
|
||||
button {
|
||||
height: 40px;
|
||||
height: 36px;
|
||||
flex: 1 1 calc(50% - 5px);
|
||||
|
||||
span {
|
||||
font-family: @font-body;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
&:nth-last-child(1):nth-child(odd) {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue