daggerheart/styles/less/sheets-settings/character-settings/sheet.less
2026-03-29 18:56:52 -04:00

56 lines
1.8 KiB
Text

@import '../../utils/colors.less';
.theme-light .application.daggerheart.dh-style.dialog {
.tab.details {
.traits-inner-container .trait-container {
background: url('../assets/svg/trait-shield-light.svg') no-repeat;
div {
filter: drop-shadow(0 0 3px @beige);
text-shadow: 0 0 3px @beige;
}
}
}
}
.application.daggerheart.dh-style.dialog {
.tab.details {
.traits-inner-container {
width: 100%;
display: flex;
align-items: center;
justify-content: space-evenly;
gap: 2px; //gap reduced to accomadate new font size and keep the same overall spacing between trait containers
.trait-container {
width: 65px; //width and height increased to accomadate font size
height: 65px;
background: url(../assets/svg/trait-shield.svg) no-repeat;
background-size: 100%; //scaling the shield to fit the container
padding-top: 4px; //aligning the text properly
display: flex;
flex-direction: column;
align-items: center;
span{
font-size: var(--font-size-10); // font size decreased to fit inside the shield and maintain readability
}
div {
filter: drop-shadow(0 0 3px black);
text-shadow: 0 0 3px black;
font-size: var(--font-size-12);
}
input {
text-align: center;
width: 32px;
height: 24px;
position: relative;
top: 2px;
padding: 0;
}
}
}
}
}