Files
nairobi/app/assets/stylesheets/account/verify-account.scss
Javi Martín f1387092e8 Don't use line-height to set verified text margin
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.
2023-01-04 16:06:29 +01:00

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;
}
}
}