extract 26px line height for inputs to variable

This commit is contained in:
Johannes Loher 2021-01-04 20:28:33 +01:00
parent 7cb6080808
commit 0db345c7de
3 changed files with 5 additions and 3 deletions

View file

@ -8,7 +8,7 @@
}
.attribute-value {
border: 2px groove $c-border-groove;
line-height: 26px;
line-height: $default-input-height;
font-size: 1.5em;
text-align: center;
padding-left: 2px;
@ -32,7 +32,7 @@
.trait-value {
border: 2px groove $c-border-groove;
font-size: 1.5em;
line-height: 26px;
line-height: $default-input-height;
text-align: center;
padding-left: 2px;
padding-right: 2px;

View file

@ -13,7 +13,7 @@
justify-content: left;
label {
line-height: 26px;
line-height: $default-input-height;
font-weight: bold;
}

View file

@ -5,4 +5,6 @@ $margin-sm: $padding-sm;
$margin-md: $padding-md;
$margin-lg: $padding-lg;
$default-input-height: 26px;
$official-assets-path: "assets/official";