mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
Downtime window now enumerates the actions/resources that will be refreshed upon completion. Resources can now specify their progression direction (#591)
This commit is contained in:
parent
645b8fef58
commit
599e9c7aa0
7 changed files with 140 additions and 2 deletions
|
|
@ -63,6 +63,36 @@
|
|||
}
|
||||
}
|
||||
|
||||
.refreshables-container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 4px;
|
||||
font-size: 12px;
|
||||
|
||||
&.wide {
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
}
|
||||
|
||||
.refreshable-container {
|
||||
border: 1px solid light-dark(@dark-blue, @golden);
|
||||
border-radius: 6px;
|
||||
color: light-dark(@dark, @beige);
|
||||
background-image: url('../assets/parchments/dh-parchment-dark.png');
|
||||
padding: 0 2px;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
|
||||
.refreshable-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.refreshable-name {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 8px;
|
||||
display: flex;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue