Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mikeblum/hugo-now.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sass/vendor/bootstrap/scss/mixins/_reset-text.scss')
-rw-r--r--[-rwxr-xr-x]sass/vendor/bootstrap/scss/mixins/_reset-text.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/sass/vendor/bootstrap/scss/mixins/_reset-text.scss b/sass/vendor/bootstrap/scss/mixins/_reset-text.scss
index b952730..354f564 100755..100644
--- a/sass/vendor/bootstrap/scss/mixins/_reset-text.scss
+++ b/sass/vendor/bootstrap/scss/mixins/_reset-text.scss
@@ -1,17 +1,17 @@
@mixin reset-text {
font-family: $font-family-base;
- // We deliberately do NOT reset font-size or word-wrap.
+ // We deliberately do NOT reset font-size or overflow-wrap / word-wrap.
font-style: normal;
font-weight: $font-weight-normal;
- letter-spacing: normal;
- line-break: auto;
line-height: $line-height-base;
text-align: left; // Fallback for where `start` is not supported
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
- white-space: normal;
+ letter-spacing: normal;
word-break: normal;
word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
}