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 {
|
||||
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;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
justify-content: left;
|
||||
|
||||
label {
|
||||
line-height: 26px;
|
||||
line-height: $default-input-height;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue