Using line-height is confusing and has unexpected results when texts span over multiple lines, as might be the case in some language and screen resolution combinations.
15 lines
247 B
SCSS
15 lines
247 B
SCSS
.verify-account {
|
|
padding-right: $line-height / 2;
|
|
|
|
.already-verified {
|
|
@include has-fa-icon(check, solid);
|
|
color: $color-success;
|
|
margin-top: $line-height;
|
|
|
|
&::before {
|
|
color: $check;
|
|
font-size: 1.4em;
|
|
}
|
|
}
|
|
}
|