bootstrap-scss 5.1.1 → 5.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +5 -5
  3. package/_accordion.scss +146 -118
  4. package/_alert.scss +71 -57
  5. package/_badge.scss +38 -29
  6. package/_breadcrumb.scss +40 -28
  7. package/_button-group.scss +142 -139
  8. package/_buttons.scss +186 -111
  9. package/_card.scss +234 -216
  10. package/_carousel.scss +229 -229
  11. package/_close.scss +40 -40
  12. package/_containers.scss +41 -41
  13. package/_dropdown.scss +248 -240
  14. package/_forms.scss +9 -9
  15. package/_functions.scss +302 -302
  16. package/_grid.scss +33 -33
  17. package/_helpers.scss +10 -9
  18. package/_list-group.scss +191 -174
  19. package/_maps.scss +54 -0
  20. package/_mixins.scss +43 -43
  21. package/_modal.scss +237 -209
  22. package/_nav.scss +172 -139
  23. package/_navbar.scss +276 -335
  24. package/_offcanvas.scss +143 -83
  25. package/_pagination.scss +109 -64
  26. package/_placeholders.scss +51 -51
  27. package/_popover.scss +196 -158
  28. package/_progress.scss +59 -48
  29. package/_reboot.scss +610 -625
  30. package/_root.scss +73 -54
  31. package/_spinners.scss +85 -69
  32. package/_tables.scss +164 -151
  33. package/_toasts.scss +70 -51
  34. package/_tooltip.scss +120 -115
  35. package/_transitions.scss +27 -27
  36. package/_type.scss +106 -104
  37. package/_utilities.scss +647 -630
  38. package/_variables.scss +1633 -1639
  39. package/bootstrap-grid.scss +64 -67
  40. package/bootstrap-reboot.scss +9 -13
  41. package/bootstrap-utilities.scss +15 -18
  42. package/bootstrap.scss +51 -53
  43. package/forms/_floating-labels.scss +74 -63
  44. package/forms/_form-check.scss +175 -152
  45. package/forms/_form-control.scss +194 -219
  46. package/forms/_form-range.scss +91 -91
  47. package/forms/_form-select.scss +71 -70
  48. package/forms/_form-text.scss +11 -11
  49. package/forms/_input-group.scss +129 -121
  50. package/forms/_labels.scss +36 -36
  51. package/forms/_validation.scss +12 -12
  52. package/helpers/_clearfix.scss +3 -3
  53. package/helpers/_color-bg.scss +10 -0
  54. package/helpers/_colored-links.scss +12 -12
  55. package/helpers/_position.scss +36 -30
  56. package/helpers/_ratio.scss +26 -26
  57. package/helpers/_stacks.scss +15 -15
  58. package/helpers/_stretched-link.scss +15 -15
  59. package/helpers/_text-truncation.scss +7 -7
  60. package/helpers/_visually-hidden.scss +8 -8
  61. package/helpers/_vr.scss +8 -8
  62. package/mixins/_alert.scss +15 -11
  63. package/mixins/_backdrop.scss +14 -14
  64. package/mixins/_banner.scss +9 -0
  65. package/mixins/_border-radius.scss +78 -78
  66. package/mixins/_box-shadow.scss +18 -18
  67. package/mixins/_breakpoints.scss +127 -127
  68. package/mixins/_buttons.scss +70 -133
  69. package/mixins/_caret.scss +64 -64
  70. package/mixins/_clearfix.scss +9 -9
  71. package/mixins/_color-scheme.scss +7 -7
  72. package/mixins/_container.scss +11 -9
  73. package/mixins/_forms.scss +152 -144
  74. package/mixins/_gradients.scss +47 -47
  75. package/mixins/_grid.scss +151 -150
  76. package/mixins/_image.scss +16 -16
  77. package/mixins/_list-group.scss +24 -24
  78. package/mixins/_lists.scss +7 -7
  79. package/mixins/_pagination.scss +10 -31
  80. package/mixins/_reset-text.scss +17 -17
  81. package/mixins/_table-variants.scss +24 -21
  82. package/mixins/_transition.scss +26 -26
  83. package/mixins/_utilities.scss +97 -89
  84. package/mixins/_visually-hidden.scss +29 -29
  85. package/package.json +1 -1
  86. package/utilities/_api.scss +47 -47
  87. package/vendor/_rfs.scss +354 -354
package/_toasts.scss CHANGED
@@ -1,51 +1,70 @@
1
- .toast {
2
- width: $toast-max-width;
3
- max-width: 100%;
4
- @include font-size($toast-font-size);
5
- color: $toast-color;
6
- pointer-events: auto;
7
- background-color: $toast-background-color;
8
- background-clip: padding-box;
9
- border: $toast-border-width solid $toast-border-color;
10
- box-shadow: $toast-box-shadow;
11
- @include border-radius($toast-border-radius);
12
-
13
- &.showing {
14
- opacity: 0;
15
- }
16
-
17
- &:not(.show) {
18
- display: none;
19
- }
20
- }
21
-
22
- .toast-container {
23
- width: max-content;
24
- max-width: 100%;
25
- pointer-events: none;
26
-
27
- > :not(:last-child) {
28
- margin-bottom: $toast-spacing;
29
- }
30
- }
31
-
32
- .toast-header {
33
- display: flex;
34
- align-items: center;
35
- padding: $toast-padding-y $toast-padding-x;
36
- color: $toast-header-color;
37
- background-color: $toast-header-background-color;
38
- background-clip: padding-box;
39
- border-bottom: $toast-border-width solid $toast-header-border-color;
40
- @include border-top-radius(subtract($toast-border-radius, $toast-border-width));
41
-
42
- .btn-close {
43
- margin-right: $toast-padding-x * -.5;
44
- margin-left: $toast-padding-x;
45
- }
46
- }
47
-
48
- .toast-body {
49
- padding: $toast-padding-x; // apply to both vertical and horizontal
50
- word-wrap: break-word;
51
- }
1
+ .toast {
2
+ // scss-docs-start toast-css-vars
3
+ --#{$prefix}toast-padding-x: #{$toast-padding-x};
4
+ --#{$prefix}toast-padding-y: #{$toast-padding-y};
5
+ --#{$prefix}toast-spacing: #{$toast-spacing};
6
+ --#{$prefix}toast-max-width: #{$toast-max-width};
7
+ @include rfs($toast-font-size, --#{$prefix}toast-font-size);
8
+ --#{$prefix}toast-color: #{$toast-color};
9
+ --#{$prefix}toast-bg: #{$toast-background-color};
10
+ --#{$prefix}toast-border-width: #{$toast-border-width};
11
+ --#{$prefix}toast-border-color: #{$toast-border-color};
12
+ --#{$prefix}toast-border-radius: #{$toast-border-radius};
13
+ --#{$prefix}toast-box-shadow: #{$toast-box-shadow};
14
+ --#{$prefix}toast-header-color: #{$toast-header-color};
15
+ --#{$prefix}toast-header-bg: #{$toast-header-background-color};
16
+ --#{$prefix}toast-header-border-color: #{$toast-header-border-color};
17
+ // scss-docs-end toast-css-vars
18
+
19
+ width: var(--#{$prefix}toast-max-width);
20
+ max-width: 100%;
21
+ @include font-size(var(--#{$prefix}toast-font-size));
22
+ color: var(--#{$prefix}toast-color);
23
+ pointer-events: auto;
24
+ background-color: var(--#{$prefix}toast-bg);
25
+ background-clip: padding-box;
26
+ border: var(--#{$prefix}toast-border-width) solid var(--#{$prefix}toast-border-color);
27
+ box-shadow: var(--#{$prefix}toast-box-shadow);
28
+ @include border-radius(var(--#{$prefix}toast-border-radius));
29
+
30
+ &.showing {
31
+ opacity: 0;
32
+ }
33
+
34
+ &:not(.show) {
35
+ display: none;
36
+ }
37
+ }
38
+
39
+ .toast-container {
40
+ position: absolute;
41
+ z-index: $zindex-toast;
42
+ width: max-content;
43
+ max-width: 100%;
44
+ pointer-events: none;
45
+
46
+ > :not(:last-child) {
47
+ margin-bottom: var(--#{$prefix}toast-spacing);
48
+ }
49
+ }
50
+
51
+ .toast-header {
52
+ display: flex;
53
+ align-items: center;
54
+ padding: var(--#{$prefix}toast-padding-y) var(--#{$prefix}toast-padding-x);
55
+ color: var(--#{$prefix}toast-header-color);
56
+ background-color: var(--#{$prefix}toast-header-bg);
57
+ background-clip: padding-box;
58
+ border-bottom: var(--#{$prefix}toast-border-width) solid var(--#{$prefix}toast-header-border-color);
59
+ @include border-top-radius(calc(var(--#{$prefix}toast-border-radius) - var(--#{$prefix}toast-border-width)));
60
+
61
+ .btn-close {
62
+ margin-right: calc(var(--#{$prefix}toast-padding-x) * -.5); // stylelint-disable-line function-disallowed-list
63
+ margin-left: var(--#{$prefix}toast-padding-x);
64
+ }
65
+ }
66
+
67
+ .toast-body {
68
+ padding: var(--#{$prefix}toast-padding-x);
69
+ word-wrap: break-word;
70
+ }
package/_tooltip.scss CHANGED
@@ -1,115 +1,120 @@
1
- // Base class
2
- .tooltip {
3
- position: absolute;
4
- z-index: $zindex-tooltip;
5
- display: block;
6
- margin: $tooltip-margin;
7
- // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
8
- // So reset our font and text properties to avoid inheriting weird values.
9
- @include reset-text();
10
- @include font-size($tooltip-font-size);
11
- // Allow breaking very long words so they don't overflow the tooltip's bounds
12
- word-wrap: break-word;
13
- opacity: 0;
14
-
15
- &.show { opacity: $tooltip-opacity; }
16
-
17
- .tooltip-arrow {
18
- position: absolute;
19
- display: block;
20
- width: $tooltip-arrow-width;
21
- height: $tooltip-arrow-height;
22
-
23
- &::before {
24
- position: absolute;
25
- content: "";
26
- border-color: transparent;
27
- border-style: solid;
28
- }
29
- }
30
- }
31
-
32
- .bs-tooltip-top {
33
- padding: $tooltip-arrow-height 0;
34
-
35
- .tooltip-arrow {
36
- bottom: 0;
37
-
38
- &::before {
39
- top: -1px;
40
- border-width: $tooltip-arrow-height ($tooltip-arrow-width * .5) 0;
41
- border-top-color: $tooltip-arrow-color;
42
- }
43
- }
44
- }
45
-
46
- .bs-tooltip-end {
47
- padding: 0 $tooltip-arrow-height;
48
-
49
- .tooltip-arrow {
50
- left: 0;
51
- width: $tooltip-arrow-height;
52
- height: $tooltip-arrow-width;
53
-
54
- &::before {
55
- right: -1px;
56
- border-width: ($tooltip-arrow-width * .5) $tooltip-arrow-height ($tooltip-arrow-width * .5) 0;
57
- border-right-color: $tooltip-arrow-color;
58
- }
59
- }
60
- }
61
-
62
- .bs-tooltip-bottom {
63
- padding: $tooltip-arrow-height 0;
64
-
65
- .tooltip-arrow {
66
- top: 0;
67
-
68
- &::before {
69
- bottom: -1px;
70
- border-width: 0 ($tooltip-arrow-width * .5) $tooltip-arrow-height;
71
- border-bottom-color: $tooltip-arrow-color;
72
- }
73
- }
74
- }
75
-
76
- .bs-tooltip-start {
77
- padding: 0 $tooltip-arrow-height;
78
-
79
- .tooltip-arrow {
80
- right: 0;
81
- width: $tooltip-arrow-height;
82
- height: $tooltip-arrow-width;
83
-
84
- &::before {
85
- left: -1px;
86
- border-width: ($tooltip-arrow-width * .5) 0 ($tooltip-arrow-width * .5) $tooltip-arrow-height;
87
- border-left-color: $tooltip-arrow-color;
88
- }
89
- }
90
- }
91
-
92
- .bs-tooltip-auto {
93
- &[data-popper-placement^="top"] {
94
- @extend .bs-tooltip-top;
95
- }
96
- &[data-popper-placement^="right"] {
97
- @extend .bs-tooltip-end;
98
- }
99
- &[data-popper-placement^="bottom"] {
100
- @extend .bs-tooltip-bottom;
101
- }
102
- &[data-popper-placement^="left"] {
103
- @extend .bs-tooltip-start;
104
- }
105
- }
106
-
107
- // Wrapper for the tooltip content
108
- .tooltip-inner {
109
- max-width: $tooltip-max-width;
110
- padding: $tooltip-padding-y $tooltip-padding-x;
111
- color: $tooltip-color;
112
- text-align: center;
113
- background-color: $tooltip-bg;
114
- @include border-radius($tooltip-border-radius);
115
- }
1
+ // Base class
2
+ .tooltip {
3
+ // scss-docs-start tooltip-css-vars
4
+ --#{$prefix}tooltip-zindex: #{$zindex-tooltip};
5
+ --#{$prefix}tooltip-max-width: #{$tooltip-max-width};
6
+ --#{$prefix}tooltip-padding-x: #{$tooltip-padding-x};
7
+ --#{$prefix}tooltip-padding-y: #{$tooltip-padding-y};
8
+ --#{$prefix}tooltip-margin: #{$tooltip-margin};
9
+ @include rfs($tooltip-font-size, --#{$prefix}tooltip-font-size);
10
+ --#{$prefix}tooltip-color: #{$tooltip-color};
11
+ --#{$prefix}tooltip-bg: #{$tooltip-bg};
12
+ --#{$prefix}tooltip-border-radius: #{$tooltip-border-radius};
13
+ --#{$prefix}tooltip-opacity: #{$tooltip-opacity};
14
+ --#{$prefix}tooltip-arrow-width: #{$tooltip-arrow-width};
15
+ --#{$prefix}tooltip-arrow-height: #{$tooltip-arrow-height};
16
+ // scss-docs-end tooltip-css-vars
17
+
18
+ z-index: var(--#{$prefix}tooltip-zindex);
19
+ display: block;
20
+ padding: var(--#{$prefix}tooltip-arrow-height);
21
+ margin: var(--#{$prefix}tooltip-margin);
22
+ @include deprecate("`$tooltip-margin`", "v5", "v5.x", true);
23
+ // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
24
+ // So reset our font and text properties to avoid inheriting weird values.
25
+ @include reset-text();
26
+ @include font-size(var(--#{$prefix}tooltip-font-size));
27
+ // Allow breaking very long words so they don't overflow the tooltip's bounds
28
+ word-wrap: break-word;
29
+ opacity: 0;
30
+
31
+ &.show { opacity: var(--#{$prefix}tooltip-opacity); }
32
+
33
+ .tooltip-arrow {
34
+ display: block;
35
+ width: var(--#{$prefix}tooltip-arrow-width);
36
+ height: var(--#{$prefix}tooltip-arrow-height);
37
+
38
+ &::before {
39
+ position: absolute;
40
+ content: "";
41
+ border-color: transparent;
42
+ border-style: solid;
43
+ }
44
+ }
45
+ }
46
+
47
+ .bs-tooltip-top .tooltip-arrow {
48
+ bottom: 0;
49
+
50
+ &::before {
51
+ top: -1px;
52
+ border-width: var(--#{$prefix}tooltip-arrow-height) calc(var(--#{$prefix}tooltip-arrow-width) * .5) 0; // stylelint-disable-line function-disallowed-list
53
+ border-top-color: var(--#{$prefix}tooltip-bg);
54
+ }
55
+ }
56
+
57
+ /* rtl:begin:ignore */
58
+ .bs-tooltip-end .tooltip-arrow {
59
+ left: 0;
60
+ width: var(--#{$prefix}tooltip-arrow-height);
61
+ height: var(--#{$prefix}tooltip-arrow-width);
62
+
63
+ &::before {
64
+ right: -1px;
65
+ border-width: calc(var(--#{$prefix}tooltip-arrow-width) * .5) var(--#{$prefix}tooltip-arrow-height) calc(var(--#{$prefix}tooltip-arrow-width) * .5) 0; // stylelint-disable-line function-disallowed-list
66
+ border-right-color: var(--#{$prefix}tooltip-bg);
67
+ }
68
+ }
69
+
70
+ /* rtl:end:ignore */
71
+
72
+ .bs-tooltip-bottom .tooltip-arrow {
73
+ top: 0;
74
+
75
+ &::before {
76
+ bottom: -1px;
77
+ border-width: 0 calc(var(--#{$prefix}tooltip-arrow-width) * .5) var(--#{$prefix}tooltip-arrow-height); // stylelint-disable-line function-disallowed-list
78
+ border-bottom-color: var(--#{$prefix}tooltip-bg);
79
+ }
80
+ }
81
+
82
+ /* rtl:begin:ignore */
83
+ .bs-tooltip-start .tooltip-arrow {
84
+ right: 0;
85
+ width: var(--#{$prefix}tooltip-arrow-height);
86
+ height: var(--#{$prefix}tooltip-arrow-width);
87
+
88
+ &::before {
89
+ left: -1px;
90
+ border-width: calc(var(--#{$prefix}tooltip-arrow-width) * .5) 0 calc(var(--#{$prefix}tooltip-arrow-width) * .5) var(--#{$prefix}tooltip-arrow-height); // stylelint-disable-line function-disallowed-list
91
+ border-left-color: var(--#{$prefix}tooltip-bg);
92
+ }
93
+ }
94
+
95
+ /* rtl:end:ignore */
96
+
97
+ .bs-tooltip-auto {
98
+ &[data-popper-placement^="top"] {
99
+ @extend .bs-tooltip-top;
100
+ }
101
+ &[data-popper-placement^="right"] {
102
+ @extend .bs-tooltip-end;
103
+ }
104
+ &[data-popper-placement^="bottom"] {
105
+ @extend .bs-tooltip-bottom;
106
+ }
107
+ &[data-popper-placement^="left"] {
108
+ @extend .bs-tooltip-start;
109
+ }
110
+ }
111
+
112
+ // Wrapper for the tooltip content
113
+ .tooltip-inner {
114
+ max-width: var(--#{$prefix}tooltip-max-width);
115
+ padding: var(--#{$prefix}tooltip-padding-y) var(--#{$prefix}tooltip-padding-x);
116
+ color: var(--#{$prefix}tooltip-color);
117
+ text-align: center;
118
+ background-color: var(--#{$prefix}tooltip-bg);
119
+ @include border-radius(var(--#{$prefix}tooltip-border-radius));
120
+ }
package/_transitions.scss CHANGED
@@ -1,27 +1,27 @@
1
- .fade {
2
- @include transition($transition-fade);
3
-
4
- &:not(.show) {
5
- opacity: 0;
6
- }
7
- }
8
-
9
- // scss-docs-start collapse-classes
10
- .collapse {
11
- &:not(.show) {
12
- display: none;
13
- }
14
- }
15
-
16
- .collapsing {
17
- height: 0;
18
- overflow: hidden;
19
- @include transition($transition-collapse);
20
-
21
- &.collapse-horizontal {
22
- width: 0;
23
- height: auto;
24
- @include transition($transition-collapse-width);
25
- }
26
- }
27
- // scss-docs-end collapse-classes
1
+ .fade {
2
+ @include transition($transition-fade);
3
+
4
+ &:not(.show) {
5
+ opacity: 0;
6
+ }
7
+ }
8
+
9
+ // scss-docs-start collapse-classes
10
+ .collapse {
11
+ &:not(.show) {
12
+ display: none;
13
+ }
14
+ }
15
+
16
+ .collapsing {
17
+ height: 0;
18
+ overflow: hidden;
19
+ @include transition($transition-collapse);
20
+
21
+ &.collapse-horizontal {
22
+ width: 0;
23
+ height: auto;
24
+ @include transition($transition-collapse-width);
25
+ }
26
+ }
27
+ // scss-docs-end collapse-classes
package/_type.scss CHANGED
@@ -1,104 +1,106 @@
1
- //
2
- // Headings
3
- //
4
- .h1 {
5
- @extend h1;
6
- }
7
-
8
- .h2 {
9
- @extend h2;
10
- }
11
-
12
- .h3 {
13
- @extend h3;
14
- }
15
-
16
- .h4 {
17
- @extend h4;
18
- }
19
-
20
- .h5 {
21
- @extend h5;
22
- }
23
-
24
- .h6 {
25
- @extend h6;
26
- }
27
-
28
-
29
- .lead {
30
- @include font-size($lead-font-size);
31
- font-weight: $lead-font-weight;
32
- }
33
-
34
- // Type display classes
35
- @each $display, $font-size in $display-font-sizes {
36
- .display-#{$display} {
37
- @include font-size($font-size);
38
- font-weight: $display-font-weight;
39
- line-height: $display-line-height;
40
- }
41
- }
42
-
43
- //
44
- // Emphasis
45
- //
46
- .small {
47
- @extend small;
48
- }
49
-
50
- .mark {
51
- @extend mark;
52
- }
53
-
54
- //
55
- // Lists
56
- //
57
-
58
- .list-unstyled {
59
- @include list-unstyled();
60
- }
61
-
62
- // Inline turns list items into inline-block
63
- .list-inline {
64
- @include list-unstyled();
65
- }
66
- .list-inline-item {
67
- display: inline-block;
68
-
69
- &:not(:last-child) {
70
- margin-right: $list-inline-padding;
71
- }
72
- }
73
-
74
-
75
- //
76
- // Misc
77
- //
78
-
79
- // Builds on `abbr`
80
- .initialism {
81
- @include font-size($initialism-font-size);
82
- text-transform: uppercase;
83
- }
84
-
85
- // Blockquotes
86
- .blockquote {
87
- margin-bottom: $blockquote-margin-y;
88
- @include font-size($blockquote-font-size);
89
-
90
- > :last-child {
91
- margin-bottom: 0;
92
- }
93
- }
94
-
95
- .blockquote-footer {
96
- margin-top: -$blockquote-margin-y;
97
- margin-bottom: $blockquote-margin-y;
98
- @include font-size($blockquote-footer-font-size);
99
- color: $blockquote-footer-color;
100
-
101
- &::before {
102
- content: "\2014\00A0"; // em dash, nbsp
103
- }
104
- }
1
+ //
2
+ // Headings
3
+ //
4
+ .h1 {
5
+ @extend h1;
6
+ }
7
+
8
+ .h2 {
9
+ @extend h2;
10
+ }
11
+
12
+ .h3 {
13
+ @extend h3;
14
+ }
15
+
16
+ .h4 {
17
+ @extend h4;
18
+ }
19
+
20
+ .h5 {
21
+ @extend h5;
22
+ }
23
+
24
+ .h6 {
25
+ @extend h6;
26
+ }
27
+
28
+
29
+ .lead {
30
+ @include font-size($lead-font-size);
31
+ font-weight: $lead-font-weight;
32
+ }
33
+
34
+ // Type display classes
35
+ @each $display, $font-size in $display-font-sizes {
36
+ .display-#{$display} {
37
+ @include font-size($font-size);
38
+ font-family: $display-font-family;
39
+ font-style: $display-font-style;
40
+ font-weight: $display-font-weight;
41
+ line-height: $display-line-height;
42
+ }
43
+ }
44
+
45
+ //
46
+ // Emphasis
47
+ //
48
+ .small {
49
+ @extend small;
50
+ }
51
+
52
+ .mark {
53
+ @extend mark;
54
+ }
55
+
56
+ //
57
+ // Lists
58
+ //
59
+
60
+ .list-unstyled {
61
+ @include list-unstyled();
62
+ }
63
+
64
+ // Inline turns list items into inline-block
65
+ .list-inline {
66
+ @include list-unstyled();
67
+ }
68
+ .list-inline-item {
69
+ display: inline-block;
70
+
71
+ &:not(:last-child) {
72
+ margin-right: $list-inline-padding;
73
+ }
74
+ }
75
+
76
+
77
+ //
78
+ // Misc
79
+ //
80
+
81
+ // Builds on `abbr`
82
+ .initialism {
83
+ @include font-size($initialism-font-size);
84
+ text-transform: uppercase;
85
+ }
86
+
87
+ // Blockquotes
88
+ .blockquote {
89
+ margin-bottom: $blockquote-margin-y;
90
+ @include font-size($blockquote-font-size);
91
+
92
+ > :last-child {
93
+ margin-bottom: 0;
94
+ }
95
+ }
96
+
97
+ .blockquote-footer {
98
+ margin-top: -$blockquote-margin-y;
99
+ margin-bottom: $blockquote-margin-y;
100
+ @include font-size($blockquote-footer-font-size);
101
+ color: $blockquote-footer-color;
102
+
103
+ &::before {
104
+ content: "\2014\00A0"; // em dash, nbsp
105
+ }
106
+ }