bootstrap/scss/mixins/_reset-text.scss

18 lines
481 B
SCSS
Raw Permalink Normal View History

@mixin reset-text() {
2015-06-19 14:56:43 +08:00
font-family: $font-family-base;
// We deliberately do NOT reset font-size or word-wrap.
2015-06-19 14:56:43 +08:00
font-style: normal;
font-weight: $font-weight-normal;
line-height: $line-height-base;
2015-06-19 14:56:43 +08:00
text-align: left; // Fallback for where `start` is not supported
2019-01-06 01:18:19 +08:00
text-align: start;
2015-06-19 14:56:43 +08:00
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
2015-06-19 14:56:43 +08:00
word-break: normal;
white-space: normal;
2021-12-14 15:40:42 +08:00
word-spacing: normal;
line-break: auto;
2015-06-19 14:56:43 +08:00
}