mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-13 12:11:07 +01:00
Initial damage message
This commit is contained in:
parent
afdffb672a
commit
362facae76
5 changed files with 95 additions and 4 deletions
51
styles/less/ui/chat/damage-summary.less
Normal file
51
styles/less/ui/chat/damage-summary.less
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
.daggerheart.chat.damage-summary {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 4px;
|
||||
|
||||
.target-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
border: 1px solid light-dark(@dark-blue, @golden);
|
||||
border-radius: 6px;
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
border-bottom: 1px solid light-dark(@dark-blue, @golden);
|
||||
|
||||
img {
|
||||
flex: 0;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
padding: 0 0 0 2px;
|
||||
}
|
||||
|
||||
label {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
padding: 0 2px 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.damage-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
gap: 2px;
|
||||
|
||||
.damage-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 2px;
|
||||
gap: 4px;
|
||||
|
||||
label {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
@import './chat/ability-use.less';
|
||||
@import './chat/action.less';
|
||||
@import './chat/chat.less';
|
||||
@import './chat/damage-summary.less';
|
||||
@import './chat/downtime.less';
|
||||
@import './chat/sheet.less';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue