twbs--bootstrap/scss/mixins/_reset-text.scss

18 lines
495 B
SCSS
Raw Normal View History

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