mixyll/_sass/basscss/_utility-typography.scss
Sai Kiran Sripada 4582790774 Intial Commit
2020-01-24 16:50:29 +05:30

39 lines
398 B
SCSS

/* Basscss Utility Typography */
.bold {
font-weight: $bold-font-weight;
}
.regular {
font-weight: normal;
}
.italic {
font-style: italic;
}
.caps {
text-transform: uppercase;
letter-spacing: .2em;
}
.left-align {
text-align: left;
}
.center {
text-align: center;
}
.right-align {
text-align: right;
}
.justify {
text-align: justify;
}
.nowrap {
white-space: nowrap;
}