2015-06-19 02:56:43 -04:00
|
|
|
@mixin reset-text {
|
|
|
|
font-family: $font-family-base;
|
2016-01-18 01:23:29 -05:00
|
|
|
// We deliberately do NOT reset font-size or word-wrap.
|
2015-06-19 02:56:43 -04:00
|
|
|
font-style: normal;
|
2016-10-19 15:41:27 -04:00
|
|
|
font-weight: $font-weight-normal;
|
2016-02-03 22:45:13 -05:00
|
|
|
line-height: $line-height-base;
|
2015-06-19 02:56:43 -04:00
|
|
|
text-align: left; // Fallback for where `start` is not supported
|
2017-10-02 23:34:56 -04:00
|
|
|
text-align: start; // stylelint-disable-line declaration-block-no-duplicate-properties
|
2015-06-19 02:56:43 -04:00
|
|
|
text-decoration: none;
|
|
|
|
text-shadow: none;
|
|
|
|
text-transform: none;
|
2017-03-18 16:06:05 -04:00
|
|
|
letter-spacing: normal;
|
2015-06-19 02:56:43 -04:00
|
|
|
word-break: normal;
|
|
|
|
word-spacing: normal;
|
2017-03-18 16:06:05 -04:00
|
|
|
white-space: normal;
|
|
|
|
line-break: auto;
|
2015-06-19 02:56:43 -04:00
|
|
|
}
|