rf-web/_sass/utils/typo-utils.scss

34 lines
409 B
SCSS
Raw Normal View History

2020-02-21 11:44:13 +00:00
.uppercase,
.upper {
text-transform: uppercase;
}
.lowercase,
.lower {
text-transform: lowercase;
}
.titlecase,
.capitalize {
text-transform: capitalize;
}
@mixin textbox {
background-color: $white;
padding: $size-16 $size-32;
}
.text-right {
text-align: right;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.colour-highlight {
color: $highlight !important;
}