comparison default/assets/scss/vendors/bootstrap/mixins/_reset-text.scss @ 0:1d038bc9b3d2 default tip

Up:default
author Liny <dev@neowd.com>
date Sat, 31 May 2025 09:21:51 +0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1d038bc9b3d2
1 // scss-lint:disable DuplicateProperty
2 @mixin reset-text {
3 font-family: $font-family-base;
4 // We deliberately do NOT reset font-size or word-wrap.
5 font-style: normal;
6 font-weight: $font-weight-normal;
7 line-height: $line-height-base;
8 text-align: left; // Fallback for where `start` is not supported
9 text-align: start;
10 text-decoration: none;
11 text-shadow: none;
12 text-transform: none;
13 letter-spacing: normal;
14 word-break: normal;
15 word-spacing: normal;
16 white-space: normal;
17 line-break: auto;
18 }