daggerheart/styles/less/ui/ownership-selection/ownership-selection.less
WBHarry 92b31b71a7
[PR][Fix] Cleaned Up Countdown Ownership View (#1459)
* Removed the disabled default ownership select in the ownership view. Added a fallback text incase there are no players added yet

* Corrected noPlayers condition
2025-12-24 01:09:51 +01:00

50 lines
993 B
Text

@import '../../utils/colors.less';
.daggerheart.views.ownership-selection {
.ownership-outer-container {
display: flex;
flex-direction: column;
gap: 8px;
.ownership-list {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 10px;
}
.ownership-container {
display: flex;
border-radius: 6px;
padding: 0 4px 0 0;
align-items: center;
gap: 8px;
img {
height: 40px;
width: 40px;
border-radius: 50%;
}
span {
flex: 3;
}
select {
flex: 1;
margin: 4px 0;
}
}
.hint {
text-align: center;
}
footer {
margin-top: 10px;
button {
height: 32px;
}
}
}
}