daggerheart/styles/less/ui/chat/damage-summary.less
2025-08-24 18:35:05 +02:00

51 lines
1.1 KiB
Text

.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;
}
}
}
}
}