mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-16 23:26:28 +01:00
43 lines
1.2 KiB
Text
43 lines
1.2 KiB
Text
@import '../../../utils/colors.less';
|
|
@import '../../../utils/fonts.less';
|
|
|
|
.application.sheet.daggerheart.actor.dh-style.party {
|
|
.tab.partyMembers {
|
|
max-height: 400px;
|
|
overflow: auto;
|
|
|
|
.actions-section {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 10px;
|
|
gap: 20px;
|
|
background-color: light-dark(@dark-blue-10, @golden-10);
|
|
|
|
button {
|
|
span {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.actors-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
align-items: center;
|
|
width: 100%;
|
|
}
|
|
.actors-dragger {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 40px;
|
|
border: 1px dashed light-dark(@dark-blue-50, @beige-50);
|
|
border-radius: 3px;
|
|
color: light-dark(@dark-blue-50, @beige-50);
|
|
}
|
|
}
|
|
}
|