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