mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* new style for character sheets * Added nowrap on level label --------- Co-authored-by: WBHarry <williambjrklund@gmail.com>
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
@import '../utils/colors.less';
|
|
@import '../utils/fonts.less';
|
|
|
|
.sheet.daggerheart.dh-style {
|
|
.tab.actions {
|
|
.actions-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
gap: 5px;
|
|
|
|
.action-item {
|
|
display: grid;
|
|
align-items: center;
|
|
grid-template-columns: 1fr 4fr 1fr;
|
|
cursor: pointer;
|
|
|
|
h4 {
|
|
font-family: @font-body;
|
|
font-weight: lighter;
|
|
color: @beige;
|
|
}
|
|
|
|
.image {
|
|
height: 40px;
|
|
width: 40px;
|
|
object-fit: cover;
|
|
border-radius: 6px;
|
|
border: none;
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|