@primer/css 19.0.0-rc.dbdedf98 → 19.1.0-rc.052fcf01
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/DEVELOP.md +15 -0
- package/actionlist/action-list-item.scss +50 -18
- package/actionlist/action-list.scss +5 -0
- package/base/normalize.scss +1 -1
- package/box/box-overlay.scss +40 -0
- package/box/index.scss +1 -0
- package/buttons/misc.scss +7 -3
- package/color-modes/index.scss +1 -0
- package/color-modes/themes/dark.scss +2 -2
- package/color-modes/themes/dark_colorblind.scss +2 -2
- package/color-modes/themes/dark_dimmed.scss +2 -2
- package/color-modes/themes/dark_high_contrast.scss +2 -2
- package/color-modes/themes/light.scss +2 -2
- package/color-modes/themes/light_colorblind.scss +2 -2
- package/color-modes/themes/light_high_contrast.scss +7 -0
- package/dist/actionlist.css +1 -1
- package/dist/actionlist.css.map +1 -1
- package/dist/base.css +1 -1
- package/dist/base.css.map +1 -1
- package/dist/box.css +1 -1
- package/dist/box.css.map +1 -1
- package/dist/buttons.css +1 -1
- package/dist/buttons.css.map +1 -1
- package/dist/color-modes.css +1 -1
- package/dist/color-modes.css.map +1 -1
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/marketing-buttons.css +1 -1
- package/dist/marketing-buttons.css.map +1 -1
- package/dist/marketing-links.css +2 -0
- package/dist/marketing-links.css.map +1 -0
- package/dist/marketing-links.js +1 -0
- package/dist/marketing-type.css.map +1 -1
- package/dist/marketing-utilities.css +1 -1
- package/dist/marketing-utilities.css.map +1 -1
- package/dist/marketing.css +1 -1
- package/dist/marketing.css.map +1 -1
- package/dist/meta.json +58 -60
- package/dist/popover.css +1 -1
- package/dist/popover.css.map +1 -1
- package/dist/primer.css +4 -4
- package/dist/primer.css.map +1 -1
- package/dist/product.css +1 -1
- package/dist/product.css.map +1 -1
- package/dist/stats/actionlist.json +1 -1
- package/dist/stats/base.json +1 -1
- package/dist/stats/box.json +1 -1
- package/dist/stats/buttons.json +1 -1
- package/dist/stats/color-modes.json +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/marketing-buttons.json +1 -1
- package/dist/stats/marketing-links.json +1 -0
- package/dist/stats/marketing-utilities.json +1 -1
- package/dist/stats/marketing.json +1 -1
- package/dist/stats/popover.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/dist/stats/product.json +1 -1
- package/dist/variables.json +62 -62
- package/index.scss +4 -4
- package/marketing/buttons/button.scss +22 -8
- package/marketing/buttons/index.scss +2 -2
- package/marketing/index.scss +1 -0
- package/marketing/links/index.scss +3 -0
- package/marketing/links/link.scss +50 -0
- package/marketing/support/index.scss +2 -2
- package/marketing/support/variables.scss +4 -5
- package/marketing/type/index.scss +2 -2
- package/marketing/type/typography.scss +23 -23
- package/marketing/utilities/animations.scss +42 -0
- package/marketing/utilities/index.scss +5 -5
- package/marketing/utilities/layout.scss +1 -1
- package/package.json +13 -13
- package/popover/popover.scss +42 -4
- package/support/mixins/layout.scss +5 -5
- package/support/mixins/misc.scss +1 -1
- package/support/variables/layout.scss +5 -5
- package/support/variables/typography.scss +1 -1
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
.link-mktg {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: inline-block;
|
|
4
|
+
|
|
5
|
+
&:hover {
|
|
6
|
+
text-decoration: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&:active {
|
|
10
|
+
outline: none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
&::after,
|
|
14
|
+
&.link-emphasis-mktg::before {
|
|
15
|
+
position: absolute;
|
|
16
|
+
bottom: -0.15em;
|
|
17
|
+
left: 0;
|
|
18
|
+
width: calc(100% - 1em);
|
|
19
|
+
height: 2px;
|
|
20
|
+
pointer-events: none;
|
|
21
|
+
content: '';
|
|
22
|
+
// stylelint-disable-next-line primer/colors
|
|
23
|
+
background-color: currentColor;
|
|
24
|
+
transform: scaleX(0);
|
|
25
|
+
transform-origin: 0 0;
|
|
26
|
+
|
|
27
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
28
|
+
transition: transform 0.3s ease;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&.link-emphasis-mktg::before {
|
|
33
|
+
opacity: 0.2;
|
|
34
|
+
transform: scaleX(1);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:hover,
|
|
38
|
+
&:focus,
|
|
39
|
+
&:active {
|
|
40
|
+
&::after {
|
|
41
|
+
transform: scaleX(1);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.arrow-target-mktg {
|
|
46
|
+
.arrow-symbol-mktg {
|
|
47
|
+
margin-left: -$em-spacer-3;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@import
|
|
2
|
-
@import
|
|
1
|
+
@import '../../support/index.scss';
|
|
2
|
+
@import './variables.scss';
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
// stylelint-disable unit-no-unknown
|
|
2
1
|
// Typography
|
|
3
|
-
$marketing-font-path:
|
|
2
|
+
$marketing-font-path: '/fonts/' !default;
|
|
4
3
|
|
|
5
4
|
$font-mktg: $body-font !default;
|
|
6
5
|
$font-weight-medium: 450 !default;
|
|
@@ -122,7 +121,7 @@ $transition-time: 0.4s !default;
|
|
|
122
121
|
$ease-mktg: cubic-bezier(0.16, 1, 0.3, 1) !default;
|
|
123
122
|
|
|
124
123
|
$marketing-position-variants: (
|
|
125
|
-
|
|
126
|
-
md:
|
|
127
|
-
lg:
|
|
124
|
+
'': '',
|
|
125
|
+
md: '-md',
|
|
126
|
+
lg: '-lg',
|
|
128
127
|
) !default;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// support files
|
|
2
|
-
@import
|
|
3
|
-
@import
|
|
2
|
+
@import '../support/index.scss';
|
|
3
|
+
@import './typography.scss';
|
|
@@ -19,20 +19,20 @@
|
|
|
19
19
|
$pairing-md: map-get($mktg-header-pairings, nth($sizes, 2));
|
|
20
20
|
$pairing-lg: map-get($mktg-header-pairings, nth($sizes, 3));
|
|
21
21
|
|
|
22
|
-
font-size: map-get($pairing,
|
|
23
|
-
line-height: map-get($pairing,
|
|
24
|
-
@if (map-get($pairing,
|
|
22
|
+
font-size: map-get($pairing, 'size') !important;
|
|
23
|
+
line-height: map-get($pairing, 'lh') !important;
|
|
24
|
+
@if (map-get($pairing, 'size') >= $mktg-header-weight-threshold) { font-weight: $mktg-header-weight-large !important; }
|
|
25
25
|
|
|
26
26
|
@if (nth($sizes, 1) != nth($sizes, 2)) {
|
|
27
27
|
@include breakpoint(md) {
|
|
28
|
-
font-size: map-get($pairing-md,
|
|
29
|
-
line-height: map-get($pairing-md,
|
|
28
|
+
font-size: map-get($pairing-md, 'size') !important;
|
|
29
|
+
line-height: map-get($pairing-md, 'lh') !important;
|
|
30
30
|
|
|
31
|
-
@if (map-get($pairing-md,
|
|
31
|
+
@if (map-get($pairing-md, 'size') >= $mktg-header-spacing-threshold and map-get($pairing, 'size') < $mktg-header-spacing-threshold) {
|
|
32
32
|
letter-spacing: $mktg-header-spacing-large !important;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
@if (map-get($pairing-md,
|
|
35
|
+
@if (map-get($pairing-md, 'size') >= $mktg-header-weight-threshold and map-get($pairing, 'size') < $mktg-header-weight-threshold) {
|
|
36
36
|
font-weight: $mktg-header-weight-large !important;
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
|
|
41
41
|
@if (nth($sizes, 2) != nth($sizes, 3)) {
|
|
42
42
|
@include breakpoint(lg) {
|
|
43
|
-
font-size: map-get($pairing-lg,
|
|
44
|
-
line-height: map-get($pairing-lg,
|
|
43
|
+
font-size: map-get($pairing-lg, 'size') !important;
|
|
44
|
+
line-height: map-get($pairing-lg, 'lh') !important;
|
|
45
45
|
|
|
46
|
-
@if (map-get($pairing-lg,
|
|
46
|
+
@if (map-get($pairing-lg, 'size') >= $mktg-header-spacing-threshold and map-get($pairing-md, 'size') < $mktg-header-spacing-threshold) {
|
|
47
47
|
letter-spacing: $mktg-header-spacing-large !important;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
@if (map-get($pairing-lg,
|
|
50
|
+
@if (map-get($pairing-lg, 'size') >= $mktg-header-weight-threshold and map-get($pairing-md, 'size') < $mktg-header-weight-threshold) {
|
|
51
51
|
font-weight: $mktg-header-weight-large !important;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
@@ -73,21 +73,21 @@
|
|
|
73
73
|
$pairing-md: map-get($mktg-body-pairings, nth($sizes, 2));
|
|
74
74
|
$pairing-lg: map-get($mktg-body-pairings, nth($sizes, 3));
|
|
75
75
|
|
|
76
|
-
font-size: map-get($pairing,
|
|
77
|
-
line-height: map-get($pairing,
|
|
78
|
-
@if (map-get($pairing,
|
|
79
|
-
@if (map-get($pairing,
|
|
76
|
+
font-size: map-get($pairing, 'size') !important;
|
|
77
|
+
line-height: map-get($pairing, 'lh') !important;
|
|
78
|
+
@if (map-get($pairing, 'size') >= $mktg-body-spacing-threshold) { letter-spacing: $mktg-body-spacing-large !important; }
|
|
79
|
+
@if (map-get($pairing, 'size') >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold; }
|
|
80
80
|
|
|
81
81
|
@if (nth($sizes, 1) != nth($sizes, 2)) {
|
|
82
82
|
@include breakpoint(md) {
|
|
83
|
-
font-size: map-get($pairing-md,
|
|
84
|
-
line-height: map-get($pairing-md,
|
|
83
|
+
font-size: map-get($pairing-md, 'size') !important;
|
|
84
|
+
line-height: map-get($pairing-md, 'lh') !important;
|
|
85
85
|
|
|
86
|
-
@if (map-get($pairing-md,
|
|
86
|
+
@if (map-get($pairing-md, 'size') >= $mktg-body-spacing-threshold and map-get($pairing, 'size') < $mktg-body-spacing-threshold) {
|
|
87
87
|
letter-spacing: $mktg-body-spacing-large !important;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
@if (map-get($pairing-md,
|
|
90
|
+
@if (map-get($pairing-md, 'size') >= $mktg-body-weight-threshold and map-get($pairing, 'size') < $mktg-body-weight-threshold) {
|
|
91
91
|
font-weight: $font-weight-medium;
|
|
92
92
|
}
|
|
93
93
|
}
|
|
@@ -95,14 +95,14 @@
|
|
|
95
95
|
|
|
96
96
|
@if (nth($sizes, 2) != nth($sizes, 3)) {
|
|
97
97
|
@include breakpoint(lg) {
|
|
98
|
-
font-size: map-get($pairing-lg,
|
|
99
|
-
line-height: map-get($pairing-lg,
|
|
98
|
+
font-size: map-get($pairing-lg, 'size') !important;
|
|
99
|
+
line-height: map-get($pairing-lg, 'lh') !important;
|
|
100
100
|
|
|
101
|
-
@if (map-get($pairing-lg,
|
|
101
|
+
@if (map-get($pairing-lg, 'size') >= $mktg-body-spacing-threshold and map-get($pairing-md, 'size') < $mktg-body-spacing-threshold) {
|
|
102
102
|
letter-spacing: $mktg-body-spacing-large !important;
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
@if (map-get($pairing-lg,
|
|
105
|
+
@if (map-get($pairing-lg, 'size') >= $mktg-body-weight-threshold and map-get($pairing-md, 'size') < $mktg-body-weight-threshold) {
|
|
106
106
|
font-weight: $font-weight-medium;
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -7,3 +7,45 @@
|
|
|
7
7
|
transform: scale3d(1.025, 1.025, 1.025);
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
|
+
|
|
11
|
+
// Animated arrow symbol, used in marketing links, buttons, etc.
|
|
12
|
+
.btn-mktg,
|
|
13
|
+
.link-mktg,
|
|
14
|
+
.arrow-target-mktg {
|
|
15
|
+
.octicon {
|
|
16
|
+
width: 1em;
|
|
17
|
+
height: 1em;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.arrow-symbol-mktg {
|
|
21
|
+
transition: transform 0.2s;
|
|
22
|
+
transform: translateX(0);
|
|
23
|
+
|
|
24
|
+
// stylelint-disable-next-line selector-max-type
|
|
25
|
+
path:last-child {
|
|
26
|
+
stroke-dasharray: 10;
|
|
27
|
+
stroke-dashoffset: 10;
|
|
28
|
+
transition: stroke-dashoffset 0.2s;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
33
|
+
&:hover,
|
|
34
|
+
&:focus {
|
|
35
|
+
.arrow-symbol-mktg {
|
|
36
|
+
transform: translateX(4px);
|
|
37
|
+
|
|
38
|
+
// stylelint-disable-next-line selector-max-type, selector-max-specificity, max-nesting-depth
|
|
39
|
+
path:last-child {
|
|
40
|
+
stroke-dashoffset: 20;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&:active {
|
|
46
|
+
.arrow-symbol-mktg {
|
|
47
|
+
transform: translateX(6px);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@import
|
|
1
|
+
@import '../support/index.scss';
|
|
2
2
|
// utilities
|
|
3
|
-
@import
|
|
4
|
-
@import
|
|
5
|
-
@import
|
|
6
|
-
@import
|
|
3
|
+
@import './animations.scss';
|
|
4
|
+
@import './borders.scss';
|
|
5
|
+
@import './filters.scss';
|
|
6
|
+
@import './layout.scss';
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@each $breakpoint, $variant in $marketing-position-variants {
|
|
7
7
|
@include breakpoint($breakpoint) {
|
|
8
8
|
@each $scale, $size in $spacer-map-extended {
|
|
9
|
-
@if ($size != 0 or $variant !=
|
|
9
|
+
@if ($size != 0 or $variant != '') {
|
|
10
10
|
.top#{$variant}-#{$scale} { top: $size !important; }
|
|
11
11
|
.right#{$variant}-#{$scale} { right: $size !important; }
|
|
12
12
|
.bottom#{$variant}-#{$scale} { bottom: $size !important; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@primer/css",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.1.0-rc.052fcf01",
|
|
4
4
|
"description": "The CSS implementation of GitHub's Primer Design System",
|
|
5
5
|
"homepage": "https://primer.style/css",
|
|
6
6
|
"author": "GitHub, Inc.",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
26
|
"dist": "script/dist.js",
|
|
27
|
-
"stylelint": "stylelint --quiet src/**/*.scss",
|
|
27
|
+
"stylelint": "stylelint --quiet 'src/**/*.scss'",
|
|
28
28
|
"eslint": "eslint deprecations.js __tests__ script",
|
|
29
29
|
"prepublishOnly": "script/prepublish",
|
|
30
30
|
"start": "yarn dev",
|
|
@@ -35,37 +35,37 @@
|
|
|
35
35
|
"storybook": "cd docs && yarn && yarn storybook"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@primer/primitives": "^7.0
|
|
38
|
+
"@primer/primitives": "^7.2.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@changesets/changelog-github": "0.4.
|
|
42
|
-
"@changesets/cli": "2.18.
|
|
41
|
+
"@changesets/changelog-github": "0.4.2",
|
|
42
|
+
"@changesets/cli": "2.18.1",
|
|
43
43
|
"@github/prettier-config": "0.0.4",
|
|
44
44
|
"@koddsson/postcss-sass": "5.0.0",
|
|
45
|
-
"@primer/stylelint-config": "12.1.
|
|
45
|
+
"@primer/stylelint-config": "12.1.1",
|
|
46
46
|
"autoprefixer": "10.4.0",
|
|
47
47
|
"cssstats": "4.0.2",
|
|
48
|
-
"eslint": "8.
|
|
49
|
-
"eslint-plugin-github": "4.3.
|
|
50
|
-
"eslint-plugin-jest": "25.
|
|
48
|
+
"eslint": "8.4.0",
|
|
49
|
+
"eslint-plugin-github": "4.3.5",
|
|
50
|
+
"eslint-plugin-jest": "25.3.0",
|
|
51
51
|
"eslint-plugin-prettier": "4.0.0",
|
|
52
52
|
"filesize": "8.0.6",
|
|
53
53
|
"front-matter": "4.0.2",
|
|
54
54
|
"fs-extra": "10.0.0",
|
|
55
55
|
"globby": "12.0.2",
|
|
56
|
-
"jest": "27.3
|
|
56
|
+
"jest": "27.4.3",
|
|
57
57
|
"js-yaml": "4.1.0",
|
|
58
|
-
"postcss": "8.
|
|
58
|
+
"postcss": "8.4.4",
|
|
59
59
|
"postcss-calc": "8.0.0",
|
|
60
60
|
"postcss-import": "14.0.2",
|
|
61
61
|
"postcss-load-config": "3.1.0",
|
|
62
62
|
"postcss-scss": "4.0.2",
|
|
63
63
|
"postcss-simple-vars": "6.0.3",
|
|
64
|
-
"prettier": "2.
|
|
64
|
+
"prettier": "2.5.1",
|
|
65
65
|
"semver": "7.3.5",
|
|
66
66
|
"stylelint": "14.1.0",
|
|
67
67
|
"stylelint-scss": "4.0.0",
|
|
68
|
-
"table": "6.7.
|
|
68
|
+
"table": "6.7.5"
|
|
69
69
|
},
|
|
70
70
|
"jest": {
|
|
71
71
|
"testEnvironment": "node",
|
package/popover/popover.scss
CHANGED
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
width: 232px;
|
|
9
9
|
margin-right: auto;
|
|
10
10
|
margin-left: auto;
|
|
11
|
+
background-color: var(--color-canvas-overlay);
|
|
12
|
+
border: $border-width $border-style var(--color-border-default);
|
|
13
|
+
border-radius: $border-radius;
|
|
11
14
|
|
|
12
15
|
// Carets
|
|
13
16
|
&::before,
|
|
@@ -34,10 +37,13 @@
|
|
|
34
37
|
border: 7px $border-style transparent;
|
|
35
38
|
border-bottom-color: var(--color-canvas-overlay);
|
|
36
39
|
}
|
|
40
|
+
}
|
|
37
41
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
42
|
+
// No caret
|
|
43
|
+
.Popover-message--no-caret {
|
|
44
|
+
&::before,
|
|
45
|
+
&::after {
|
|
46
|
+
display: none;
|
|
41
47
|
}
|
|
42
48
|
}
|
|
43
49
|
|
|
@@ -182,8 +188,40 @@
|
|
|
182
188
|
}
|
|
183
189
|
|
|
184
190
|
.Popover-message--large {
|
|
185
|
-
|
|
186
191
|
@include breakpoint(sm) {
|
|
187
192
|
min-width: 320px;
|
|
188
193
|
}
|
|
189
194
|
}
|
|
195
|
+
|
|
196
|
+
// Responsive Popover
|
|
197
|
+
// For < md it will show full-width anchored to the bottom
|
|
198
|
+
|
|
199
|
+
@media (max-width: ($width-md - 1px)) {
|
|
200
|
+
.Popover {
|
|
201
|
+
position: fixed;
|
|
202
|
+
top: auto !important;
|
|
203
|
+
right: 0 !important;
|
|
204
|
+
bottom: 0 !important;
|
|
205
|
+
left: 0 !important;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.Popover-message {
|
|
209
|
+
top: auto;
|
|
210
|
+
right: auto;
|
|
211
|
+
bottom: auto;
|
|
212
|
+
left: auto;
|
|
213
|
+
width: auto !important;
|
|
214
|
+
margin: $spacer-2;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
// Increase tap area for touch input
|
|
218
|
+
.Popover-message > .btn-octicon {
|
|
219
|
+
padding: $spacer-2 + $spacer-1 !important;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
// Remove caret
|
|
223
|
+
.Popover-message::after,
|
|
224
|
+
.Popover-message::before {
|
|
225
|
+
display: none;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// Responsive media queries
|
|
2
2
|
|
|
3
3
|
@mixin breakpoint($breakpoint) {
|
|
4
|
-
@if $breakpoint ==
|
|
4
|
+
@if $breakpoint == '' {
|
|
5
5
|
@content;
|
|
6
6
|
}
|
|
7
7
|
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
|
|
20
20
|
// If the key doesn't exist in the map
|
|
21
21
|
@else {
|
|
22
|
-
@warn
|
|
23
|
-
+
|
|
22
|
+
@warn 'Unfortunately, no value could be retrieved from `#{$breakpoint}`. '
|
|
23
|
+
+ 'Please make sure it is defined in `$breakpoints` map.';
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
@mixin clearfix {
|
|
48
48
|
&::before {
|
|
49
49
|
display: table;
|
|
50
|
-
content:
|
|
50
|
+
content: '';
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
&::after {
|
|
54
54
|
display: table;
|
|
55
55
|
clear: both;
|
|
56
|
-
content:
|
|
56
|
+
content: '';
|
|
57
57
|
}
|
|
58
58
|
}
|
package/support/mixins/misc.scss
CHANGED
|
@@ -150,11 +150,11 @@ $breakpoints: (
|
|
|
150
150
|
// breakpoints and create both responsive and non-responsive classes in one
|
|
151
151
|
// loop:
|
|
152
152
|
$responsive-variants: (
|
|
153
|
-
|
|
154
|
-
sm:
|
|
155
|
-
md:
|
|
156
|
-
lg:
|
|
157
|
-
xl:
|
|
153
|
+
'': '',
|
|
154
|
+
sm: '-sm',
|
|
155
|
+
md: '-md',
|
|
156
|
+
lg: '-lg',
|
|
157
|
+
xl: '-xl',
|
|
158
158
|
) !default;
|
|
159
159
|
|
|
160
160
|
// responive utility position values
|
|
@@ -32,7 +32,7 @@ $lh-condensed: 1.25 !default;
|
|
|
32
32
|
$lh-default: 1.5 !default;
|
|
33
33
|
|
|
34
34
|
// Font stacks
|
|
35
|
-
$body-font: -apple-system, BlinkMacSystemFont,
|
|
35
|
+
$body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji' !default;
|
|
36
36
|
|
|
37
37
|
// Monospace font stack
|
|
38
38
|
// Note: SFMono-Regular needs to come before SF Mono to fix an older version of the font in Chrome
|