extract 26px line height for inputs to variable
This commit is contained in:
parent
7cb6080808
commit
0db345c7de
3 changed files with 5 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
}
|
}
|
||||||
.attribute-value {
|
.attribute-value {
|
||||||
border: 2px groove $c-border-groove;
|
border: 2px groove $c-border-groove;
|
||||||
line-height: 26px;
|
line-height: $default-input-height;
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding-left: 2px;
|
padding-left: 2px;
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
.trait-value {
|
.trait-value {
|
||||||
border: 2px groove $c-border-groove;
|
border: 2px groove $c-border-groove;
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
line-height: 26px;
|
line-height: $default-input-height;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding-left: 2px;
|
padding-left: 2px;
|
||||||
padding-right: 2px;
|
padding-right: 2px;
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
justify-content: left;
|
justify-content: left;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
line-height: 26px;
|
line-height: $default-input-height;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,6 @@ $margin-sm: $padding-sm;
|
||||||
$margin-md: $padding-md;
|
$margin-md: $padding-md;
|
||||||
$margin-lg: $padding-lg;
|
$margin-lg: $padding-lg;
|
||||||
|
|
||||||
|
$default-input-height: 26px;
|
||||||
|
|
||||||
$official-assets-path: "assets/official";
|
$official-assets-path: "assets/official";
|
||||||
|
|
Loading…
Reference in a new issue