1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 03:19:27 +00:00
Files
stratos/src/stylesheets/components/_title.scss
2022-01-25 22:52:46 +00:00

20 lines
289 B
SCSS

.title {
&--spaced {
font: normal 300 1em Roboto;
letter-spacing: 0.175em;
text-transform: uppercase;
color: $text-colour;
}
&--center {
display: flex;
justify-content: center;
}
}
@each $name, $colour in $title-colours {
.title.title--#{$name} {
color: $colour;
}
}