Support drag dropping currencies to actor sheets

This commit is contained in:
Carlos Fernandez 2025-12-16 01:57:26 -05:00
parent 9b4249b100
commit 71b40b1189
7 changed files with 122 additions and 106 deletions

View file

@ -1,20 +1,35 @@
.daggerheart.dh-style.dialog.item-transfer {
.item-transfer-container {
display: grid;
grid-template-columns: 1fr 42px;
gap: 4px;
.summary {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
.actor-img {
border-radius: 50%;
width: 72px;
height: 72px;
object-fit: cover;
object-position: top center;
}
.number-display {
text-align: center;
.granted-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: var(--font-size-32);
img {
width: 32px;
height: 32px;
object-fit: contain;
border-radius: 3px;
}
}
}
.item-sheet-footer {
padding-top: 8px;
display: flex;
button {
flex: 1;
}
label {
flex: 0;
margin-right: 0.5rem;
}
}