daggerheart/styles/less/dialog/image-select/sheet.less
WBHarry fcb9c032ef
[Fix] Beastform Fixes (#1288)
* Fixed Beastforms getting stuck

* Made the wildcard image select dialog scrollable

* Beastform button shifts to cancelBeastform
2025-11-15 11:51:01 -05:00

35 lines
673 B
Text

.daggerheart.dh-style.dialog.image-select {
display: flex;
flex-direction: column;
.images-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
max-height: 420px;
overflow: auto;
img {
width: 136px;
height: 136px;
border: 1px solid light-dark(@dark-blue, @golden);
border-radius: 6px;
opacity: 0.4;
&.selected {
opacity: 1;
}
}
}
.footer {
margin-top: 8px;
display: flex;
align-items: center;
gap: 8px;
button {
flex: 1;
}
}
}