2015-06-18 23:56:43 -07:00
|
|
|
@mixin reset-text {
|
|
|
|
font-family: $font-family-base;
|
2019-08-29 10:41:17 +02:00
|
|
|
// We deliberately do NOT reset font-size or overflow-wrap / word-wrap.
|
2015-06-18 23:56:43 -07:00
|
|
|
font-style: normal;
|
2016-10-19 21:41:27 +02:00
|
|
|
font-weight: $font-weight-normal;
|
2016-02-03 19:45:13 -08:00
|
|
|
line-height: $line-height-base;
|
2015-06-18 23:56:43 -07:00
|
|
|
text-align: left; // Fallback for where `start` is not supported
|
2019-01-05 19:18:19 +02:00
|
|
|
text-align: start;
|
2015-06-18 23:56:43 -07:00
|
|
|
text-decoration: none;
|
|
|
|
text-shadow: none;
|
|
|
|
text-transform: none;
|
2017-03-18 21:06:05 +01:00
|
|
|
letter-spacing: normal;
|
2015-06-18 23:56:43 -07:00
|
|
|
word-break: normal;
|
2017-03-18 21:06:05 +01:00
|
|
|
white-space: normal;
|
2021-12-14 09:51:31 +02:00
|
|
|
word-spacing: normal;
|
2017-03-18 21:06:05 +01:00
|
|
|
line-break: auto;
|
2015-06-18 23:56:43 -07:00
|
|
|
}
|