mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
28 lines
645 B
Text
28 lines
645 B
Text
@import '../../utils/colors.less';
|
|
|
|
.daggerheart.views.ownership-selection {
|
|
.ownership-outer-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
|
|
.ownership-container {
|
|
display: flex;
|
|
border: 2px solid light-dark(@dark-blue, @golden);
|
|
border-radius: 6px;
|
|
padding: 0 4px 0 0;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
img {
|
|
height: 40px;
|
|
width: 40px;
|
|
border-radius: 6px 0 0 6px;
|
|
}
|
|
|
|
select {
|
|
margin: 4px 0;
|
|
}
|
|
}
|
|
}
|
|
}
|