@cdc/core 4.22.10 → 4.22.11

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.
Files changed (73) hide show
  1. package/README.md +1 -1
  2. package/components/AdvancedEditor.js +52 -67
  3. package/components/ErrorBoundary.jsx +10 -11
  4. package/components/GlobalContext.jsx +2 -6
  5. package/components/LegendCircle.jsx +3 -4
  6. package/components/Loading.jsx +14 -12
  7. package/components/Waiting.jsx +14 -5
  8. package/components/elements/Button.jsx +34 -45
  9. package/components/elements/Card.jsx +1 -1
  10. package/components/inputs/InputCheckbox.jsx +32 -35
  11. package/components/inputs/InputGroup.jsx +38 -17
  12. package/components/inputs/InputSelect.jsx +27 -23
  13. package/components/inputs/InputText.jsx +9 -25
  14. package/components/inputs/InputToggle.jsx +29 -33
  15. package/components/managers/DataDesigner.jsx +87 -64
  16. package/components/ui/Accordion.jsx +18 -30
  17. package/components/ui/Icon.jsx +34 -35
  18. package/components/ui/LoadSpin.jsx +6 -11
  19. package/components/ui/Modal.jsx +40 -44
  20. package/components/ui/Overlay.jsx +12 -23
  21. package/components/ui/OverlayFrame.jsx +1 -5
  22. package/components/ui/Tooltip.jsx +8 -28
  23. package/data/colorPalettes.js +29 -266
  24. package/data/dataDesignerTables.js +107 -107
  25. package/data/themes.js +13 -13
  26. package/helpers/DataTransform.js +92 -92
  27. package/helpers/cacheBustingString.js +3 -3
  28. package/helpers/events.js +5 -6
  29. package/helpers/fetchRemoteData.js +31 -33
  30. package/helpers/getViewport.js +15 -15
  31. package/helpers/numberFromString.js +7 -7
  32. package/helpers/updatePaletteNames.js +15 -17
  33. package/helpers/useDataVizClasses.js +38 -35
  34. package/helpers/validateFipsCodeLength.js +41 -56
  35. package/package.json +2 -2
  36. package/styles/_data-table.scss +32 -27
  37. package/styles/_global.scss +29 -24
  38. package/styles/_mixins.scss +12 -12
  39. package/styles/_reset.scss +85 -16
  40. package/styles/_variables.scss +5 -5
  41. package/styles/base.scss +99 -48
  42. package/styles/heading-colors.scss +6 -2
  43. package/styles/loading.scss +62 -60
  44. package/styles/v2/base/_file-selector.scss +2 -2
  45. package/styles/v2/base/_general.scss +1 -1
  46. package/styles/v2/base/_reset.scss +2 -2
  47. package/styles/v2/base/index.scss +4 -4
  48. package/styles/v2/components/accordion.scss +13 -13
  49. package/styles/v2/components/button.scss +3 -3
  50. package/styles/v2/components/card.scss +1 -1
  51. package/styles/v2/components/data-designer.scss +7 -6
  52. package/styles/v2/components/editor.scss +52 -51
  53. package/styles/v2/components/guidance-block.scss +6 -6
  54. package/styles/v2/components/input/_input-check-radio.scss +7 -7
  55. package/styles/v2/components/input/_input-group.scss +2 -2
  56. package/styles/v2/components/input/_input-slider.scss +2 -3
  57. package/styles/v2/components/input/index.scss +6 -6
  58. package/styles/v2/components/loadspin.scss +1 -1
  59. package/styles/v2/components/modal.scss +2 -2
  60. package/styles/v2/components/overlay.scss +4 -4
  61. package/styles/v2/layout/_alert.scss +8 -8
  62. package/styles/v2/layout/_component.scss +1 -1
  63. package/styles/v2/layout/_data-table.scss +12 -11
  64. package/styles/v2/layout/_progression.scss +8 -6
  65. package/styles/v2/layout/index.scss +5 -5
  66. package/styles/v2/main.scss +7 -7
  67. package/styles/v2/themes/_color-definitions.scss +77 -24
  68. package/styles/v2/themes/index.scss +1 -1
  69. package/styles/v2/utils/_animations.scss +2 -2
  70. package/styles/v2/utils/_breakpoints.scss +53 -12
  71. package/styles/v2/utils/_variables.scss +5 -5
  72. package/styles/v2/utils/index.scss +8 -8
  73. package/styles/waiting.scss +22 -23
@@ -7,11 +7,11 @@ strong {
7
7
  }
8
8
 
9
9
  .error-box {
10
- background: #FFC2C2;
10
+ background: #ffc2c2;
11
11
  display: flex;
12
12
  justify-content: space-between;
13
- padding: .3rem 1rem;
14
- font-size: .9rem;
13
+ padding: 0.3rem 1rem;
14
+ font-size: 0.9rem;
15
15
  strong {
16
16
  font-weight: 600;
17
17
  }
@@ -20,7 +20,7 @@ strong {
20
20
  }
21
21
  .dismiss-error {
22
22
  flex-shrink: 0;
23
- font-size: .8rem;
23
+ font-size: 0.8rem;
24
24
  cursor: pointer;
25
25
  }
26
26
  }
@@ -42,7 +42,7 @@ strong {
42
42
  .inline-icon {
43
43
  width: 1em !important;
44
44
  height: auto !important;
45
- @media all and (-ms-high-contrast:none) {
45
+ @media all and (-ms-high-contrast: none) {
46
46
  height: 30px !important;
47
47
  }
48
48
  font-size: 1rem;
@@ -56,26 +56,26 @@ strong {
56
56
  background: #005eaa;
57
57
  color: #fff;
58
58
  border: 0;
59
- padding: .4em .8em;
59
+ padding: 0.4em 0.8em;
60
60
  font-size: 1em;
61
61
  display: block;
62
- border-radius: .3em;
63
- transition: .1s background-color;
62
+ border-radius: 0.3em;
63
+ transition: 0.1s background-color;
64
64
  cursor: pointer;
65
65
  &.full-width {
66
66
  width: 100%;
67
67
  }
68
68
  &:hover {
69
- transition: .1s background-color;
69
+ transition: 0.1s background-color;
70
70
  }
71
71
  &.secondary {
72
- font-size: .8em;
73
- padding: .3em 1em;
72
+ font-size: 0.8em;
73
+ padding: 0.3em 1em;
74
74
  background: rgba(0, 0, 0, 0.3);
75
75
  display: inline-block;
76
76
  margin-bottom: 1em;
77
77
  &:hover {
78
- background: rgba(0,0,0,.5);
78
+ background: rgba(0, 0, 0, 0.5);
79
79
  }
80
80
  }
81
81
  &.danger {
@@ -87,7 +87,7 @@ strong {
87
87
  }
88
88
 
89
89
  &:hover {
90
- transition: .1s all;
90
+ transition: 0.1s all;
91
91
  background: lighten(#005eaa, 5%);
92
92
  }
93
93
 
@@ -100,14 +100,19 @@ strong {
100
100
  }
101
101
  }
102
102
 
103
- input[type="text"], input[type="date"], input[role="combobox"], input[type="number"], input[type="search"], textarea {
104
- padding: .5em .5em;
103
+ input[type='text'],
104
+ input[type='date'],
105
+ input[role='combobox'],
106
+ input[type='number'],
107
+ input[type='search'],
108
+ textarea {
109
+ padding: 0.5em 0.5em;
105
110
  font-size: 1em;
106
111
  font-weight: normal;
107
112
  font-family: sans-serif;
108
- border: rgba(0,0,0,.3) 1px solid !important;
113
+ border: rgba(0, 0, 0, 0.3) 1px solid !important;
109
114
  &:focus {
110
- border: rgba(0,0,0,.7) 1px solid !important;
115
+ border: rgba(0, 0, 0, 0.7) 1px solid !important;
111
116
  outline: 0;
112
117
  }
113
118
  }
@@ -129,16 +134,16 @@ select {
129
134
 
130
135
  .guidance-link {
131
136
  margin: 2em 0 1em;
132
- padding: .75em 1em;
137
+ padding: 0.75em 1em;
133
138
  display: flex;
134
139
  text-decoration: none;
135
140
  color: #444;
136
141
  border: $lightGray 1px solid;
137
142
  position: relative;
138
- transition: .2s all;
143
+ transition: 0.2s all;
139
144
  font-size: 1em;
140
145
  &:before {
141
- content: " ";
146
+ content: ' ';
142
147
  width: 5px;
143
148
  background: $blue;
144
149
  left: -1px;
@@ -148,11 +153,11 @@ select {
148
153
  }
149
154
  &:hover {
150
155
  background: $lightestGray;
151
- transition: .2s all;
156
+ transition: 0.2s all;
152
157
  color: #444;
153
158
  }
154
159
  > div {
155
- font-size: .9em;
160
+ font-size: 0.9em;
156
161
  }
157
162
  svg {
158
163
  width: 60px;
@@ -173,11 +178,11 @@ section.introText {
173
178
  }
174
179
 
175
180
  section.footnotes {
176
- border-top: 1px solid #DDD;
181
+ border-top: 1px solid #ddd;
177
182
  margin-top: 20px;
178
183
  padding: 15px;
179
184
  }
180
185
 
181
186
  .cdc-chart-inner-container .subtext {
182
187
  padding: 15px;
183
- }
188
+ }
@@ -1,13 +1,13 @@
1
1
  @mixin emptyState {
2
- background: rgba(255, 255, 255, 0.5);
3
- top: 0;
4
- left: 0;
5
- right: 0;
6
- bottom: 0;
7
- position: absolute;
8
- text-align: center;
9
- display: flex;
10
- align-items: center;
11
- justify-content: center;
12
- z-index: 7;
13
- }
2
+ background: rgba(255, 255, 255, 0.5);
3
+ top: 0;
4
+ left: 0;
5
+ right: 0;
6
+ bottom: 0;
7
+ position: absolute;
8
+ text-align: center;
9
+ display: flex;
10
+ align-items: center;
11
+ justify-content: center;
12
+ z-index: 7;
13
+ }
@@ -10,7 +10,7 @@
10
10
  // match cdc site outline
11
11
  :focus,
12
12
  [tabindex]:focus-visible {
13
- outline: 2px solid rgba(255,102,1,.9) !important;
13
+ outline: 2px solid rgba(255, 102, 1, 0.9) !important;
14
14
  }
15
15
 
16
16
  .outline-none {
@@ -18,19 +18,85 @@
18
18
  }
19
19
  }
20
20
  .cdc-open-viz-module {
21
- div, span, applet, object, iframe,
22
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
23
- a, abbr, acronym, address, big, cite, code,
24
- del, dfn, em, img, ins, kbd, q, s, samp,
25
- small, strike, strong, sub, sup, tt, var,
26
- b, u, i, center,
27
- dl, dt, dd, ol, ul, li,
28
- fieldset, form, label, legend,
29
- table, caption, tbody, tfoot, thead, tr, th, td,
30
- article, aside, canvas, details, embed,
31
- figure, figcaption, footer, header, hgroup,
32
- menu, nav, output, ruby, section, summary,
33
- time, mark, audio, video {
21
+ div,
22
+ span,
23
+ applet,
24
+ object,
25
+ iframe,
26
+ h1,
27
+ h2,
28
+ h3,
29
+ h4,
30
+ h5,
31
+ h6,
32
+ p,
33
+ blockquote,
34
+ pre,
35
+ a,
36
+ abbr,
37
+ acronym,
38
+ address,
39
+ big,
40
+ cite,
41
+ code,
42
+ del,
43
+ dfn,
44
+ em,
45
+ img,
46
+ ins,
47
+ kbd,
48
+ q,
49
+ s,
50
+ samp,
51
+ small,
52
+ strike,
53
+ strong,
54
+ sub,
55
+ sup,
56
+ tt,
57
+ var,
58
+ b,
59
+ u,
60
+ i,
61
+ center,
62
+ dl,
63
+ dt,
64
+ dd,
65
+ ol,
66
+ ul,
67
+ li,
68
+ fieldset,
69
+ form,
70
+ label,
71
+ legend,
72
+ table,
73
+ caption,
74
+ tbody,
75
+ tfoot,
76
+ thead,
77
+ tr,
78
+ th,
79
+ td,
80
+ article,
81
+ aside,
82
+ canvas,
83
+ details,
84
+ embed,
85
+ figure,
86
+ figcaption,
87
+ footer,
88
+ header,
89
+ hgroup,
90
+ menu,
91
+ nav,
92
+ output,
93
+ ruby,
94
+ section,
95
+ summary,
96
+ time,
97
+ mark,
98
+ audio,
99
+ video {
34
100
  margin: 0;
35
101
  padding: 0;
36
102
  border: 0;
@@ -47,9 +113,12 @@
47
113
  }
48
114
  }
49
115
 
50
- * {box-sizing: border-box}
116
+ * {
117
+ box-sizing: border-box;
118
+ }
51
119
 
52
- sub, sup {
120
+ sub,
121
+ sup {
53
122
  /* Specified in % so that the sup/sup is the
54
123
  right size relative to the surrounding text */
55
124
  font-size: 75%;
@@ -1,15 +1,15 @@
1
1
  $baseColor: #333;
2
- $blue: #005EAA;
3
- $lightestGray: #F2F2F2;
4
- $lightGray: #C7C7C7;
2
+ $blue: #005eaa;
3
+ $lightestGray: #f2f2f2;
4
+ $lightGray: #c7c7c7;
5
5
  $mediumGray: #565656;
6
6
  $darkGray: #333;
7
7
  $red: #d8000c;
8
8
  $white: #fff;
9
9
 
10
- $primary: #005eaa !default;
10
+ $primary: #005eaa !default;
11
11
  $secondary: #88c3ea !default;
12
- $tertiary: #c0e9ff !default;
12
+ $tertiary: #c0e9ff !default;
13
13
  $quaternary: #edf9ff !default;
14
14
 
15
15
  $purple-primary: #712177 !default;
package/styles/base.scss CHANGED
@@ -1,61 +1,57 @@
1
- @use "sass:string";
1
+ @use 'sass:string';
2
2
 
3
3
  @mixin breakpoint($class) {
4
4
  @if $class == xs {
5
- @media (max-width: 767px) { @content; }
6
- }
7
-
8
- @else if $class == sm {
9
- @media (min-width: 768px) { @content; }
10
- }
11
-
12
- @else if $class == md {
13
- @media (min-width: 960px) { @content; }
14
- }
15
-
16
- @else if $class == lg {
17
- @media (min-width: 1300px) { @content; }
18
- }
19
-
20
- @else {
5
+ @media (max-width: 767px) {
6
+ @content;
7
+ }
8
+ } @else if $class == sm {
9
+ @media (min-width: 768px) {
10
+ @content;
11
+ }
12
+ } @else if $class == md {
13
+ @media (min-width: 960px) {
14
+ @content;
15
+ }
16
+ } @else if $class == lg {
17
+ @media (min-width: 1300px) {
18
+ @content;
19
+ }
20
+ } @else {
21
21
  @warn "Breakpoint mixin supports: xs, sm, md, lg";
22
22
  }
23
23
  }
24
24
 
25
25
  @mixin breakpointClass($class) {
26
26
  @if $class == xs {
27
- &.xs, &.xxs {
27
+ &.xs,
28
+ &.xxs {
28
29
  @content;
29
30
  }
30
- }
31
-
32
- @else if $class == sm {
33
- &.sm, &.md, &.lg {
31
+ } @else if $class == sm {
32
+ &.sm,
33
+ &.md,
34
+ &.lg {
34
35
  @content;
35
36
  }
36
- }
37
-
38
- @else if $class == md {
39
- &.md, &.lg {
37
+ } @else if $class == md {
38
+ &.md,
39
+ &.lg {
40
40
  @content;
41
41
  }
42
- }
43
-
44
- @else if $class == lg {
42
+ } @else if $class == lg {
45
43
  &.lg {
46
44
  @content;
47
45
  }
48
- }
49
-
50
- @else {
46
+ } @else {
51
47
  @warn "Breakpoint Class mixin supports: xs, sm, md, lg";
52
48
  }
53
49
  }
54
50
 
55
51
  // Imports
56
- @import "reset";
57
- @import "variables";
58
- @import "mixins";
52
+ @import 'reset';
53
+ @import 'variables';
54
+ @import 'mixins';
59
55
 
60
56
  .cdc-open-viz-module {
61
57
  position: relative;
@@ -65,20 +61,75 @@
65
61
  @include breakpointClass(md) {
66
62
  font-size: 16px !important;
67
63
  }
68
- @import "data-table";
69
- @import "global";
64
+ @import 'data-table';
65
+ @import 'global';
70
66
  }
71
67
 
72
68
  $theme: (
73
- 'amber': ('#fbab18', '#ffd54f', '#ffecb3', '#fff7e1'),
74
- 'blue': ('#005eaa', '#88c3ea', '#c0e9ff', '#edf9ff'),
75
- 'brown': ('#705043', '#ad907b', '#d7ccc8', '#f2ebe8'),
76
- 'cyan': ('#006778', '#65b0bd', '#cce5e9', '#ebf5f6'),
77
- 'green': ('#4b830d', '#84bc49', '#dcedc8', '#f1f8e9'),
78
- 'indigo': ('#26418f', '#92a6dd', '#dee8ff', '#f2f6ff'),
79
- 'orange': ('#bb4d00', '#ffad42', '#ffe97d', '#fff4cf'),
80
- 'pink': ('#af4448', '#e57373', '#ffc2c2', '#ffe7e7'),
81
- 'purple': ('#712177', '#b890bb', '#e3d3e4', '#f7f2f7'),
82
- 'slate': ('#29434e', '#7e9ba5', '#b6c6d2', '#e2e8ed'),
83
- 'teal': ('#00695c', '#4ebaaa', '#ceece7', '#ebf7f5' )
69
+ 'amber': (
70
+ '#fbab18',
71
+ '#ffd54f',
72
+ '#ffecb3',
73
+ '#fff7e1'
74
+ ),
75
+ 'blue': (
76
+ '#005eaa',
77
+ '#88c3ea',
78
+ '#c0e9ff',
79
+ '#edf9ff'
80
+ ),
81
+ 'brown': (
82
+ '#705043',
83
+ '#ad907b',
84
+ '#d7ccc8',
85
+ '#f2ebe8'
86
+ ),
87
+ 'cyan': (
88
+ '#006778',
89
+ '#65b0bd',
90
+ '#cce5e9',
91
+ '#ebf5f6'
92
+ ),
93
+ 'green': (
94
+ '#4b830d',
95
+ '#84bc49',
96
+ '#dcedc8',
97
+ '#f1f8e9'
98
+ ),
99
+ 'indigo': (
100
+ '#26418f',
101
+ '#92a6dd',
102
+ '#dee8ff',
103
+ '#f2f6ff'
104
+ ),
105
+ 'orange': (
106
+ '#bb4d00',
107
+ '#ffad42',
108
+ '#ffe97d',
109
+ '#fff4cf'
110
+ ),
111
+ 'pink': (
112
+ '#af4448',
113
+ '#e57373',
114
+ '#ffc2c2',
115
+ '#ffe7e7'
116
+ ),
117
+ 'purple': (
118
+ '#712177',
119
+ '#b890bb',
120
+ '#e3d3e4',
121
+ '#f7f2f7'
122
+ ),
123
+ 'slate': (
124
+ '#29434e',
125
+ '#7e9ba5',
126
+ '#b6c6d2',
127
+ '#e2e8ed'
128
+ ),
129
+ 'teal': (
130
+ '#00695c',
131
+ '#4ebaaa',
132
+ '#ceece7',
133
+ '#ebf7f5'
134
+ )
84
135
  );
@@ -1,4 +1,8 @@
1
- div.dashboard-title, div.chart-title, div.map-title, .color-palette li, .btn {
1
+ div.dashboard-title,
2
+ div.chart-title,
3
+ div.map-title,
4
+ .color-palette li,
5
+ .btn {
2
6
  &.theme-purple {
3
7
  background: #712177;
4
8
  border-bottom-color: #b890bb;
@@ -43,4 +47,4 @@ div.dashboard-title, div.chart-title, div.map-title, .color-palette li, .btn {
43
47
  background: #005eaa;
44
48
  border-bottom-color: #88c3ea;
45
49
  }
46
- }
50
+ }
@@ -5,68 +5,70 @@
5
5
  * Licensed under MIT
6
6
  */
7
7
  @keyframes ball-beat {
8
- 50% {
9
- opacity: .2;
10
- -webkit-transform: scale(.75);
11
- -moz-transform: scale(.75);
12
- -o-transform: scale(.75);
13
- transform: scale(.75);
14
- }
15
- 100% {
16
- opacity: 1;
17
- -webkit-transform: scale(1);
18
- -moz-transform: scale(1);
19
- -o-transform: scale(1);
20
- transform: scale(1);
21
- }
8
+ 50% {
9
+ opacity: 0.2;
10
+ -webkit-transform: scale(0.75);
11
+ -moz-transform: scale(0.75);
12
+ -o-transform: scale(0.75);
13
+ transform: scale(0.75);
14
+ }
15
+ 100% {
16
+ opacity: 1;
17
+ -webkit-transform: scale(1);
18
+ -moz-transform: scale(1);
19
+ -o-transform: scale(1);
20
+ transform: scale(1);
21
+ }
22
22
  }
23
23
 
24
24
  .cdc-open-viz-module .loading {
25
- text-align: center;
26
- position: absolute;
27
- z-index: 3;
28
- background: rgba(255,255,255,.5);
29
- left: 0;
30
- right: 0;
31
- bottom: 0;
32
- top: 0;
33
- min-height: 30%;
34
- span {
35
- display: block;
36
- margin-bottom: 1em;
37
- font-size: 1.3em;
38
- }
39
- .la-ball-beat {
25
+ text-align: center;
26
+ position: absolute;
27
+ z-index: 3;
28
+ background: rgba(255, 255, 255, 0.5);
29
+ left: 0;
30
+ right: 0;
31
+ bottom: 0;
32
+ top: 0;
33
+ min-height: 30%;
34
+ span {
35
+ display: block;
36
+ margin-bottom: 1em;
37
+ font-size: 1.3em;
38
+ }
39
+ .la-ball-beat {
40
+ position: relative;
41
+ box-sizing: border-box;
42
+ margin: 0 auto;
43
+ transform: scale(1.3);
44
+ font-size: 0;
45
+ color: #777;
46
+ display: flex;
47
+ justify-content: center;
48
+ align-items: center;
49
+ width: 108px;
50
+ height: 36px;
51
+ &.sm,
52
+ &.xs,
53
+ &.xxs {
54
+ transform: scale(0.7);
55
+ }
56
+ div + div {
57
+ margin-left: 10px;
58
+ }
59
+ > div {
40
60
  position: relative;
41
- box-sizing: border-box;
42
- margin: 0 auto;
43
- transform: scale(1.3);
44
- font-size: 0;
45
- color: #777;
46
- display: flex;
47
- justify-content: center;
48
- align-items: center;
49
- width: 108px;
50
- height: 36px;
51
- &.sm, &.xs, &.xxs {
52
- transform: scale(0.7)
61
+ box-sizing: border-box;
62
+ width: 20px;
63
+ height: 20px;
64
+ border-radius: 100%;
65
+ animation: ball-beat 0.7s -0.15s infinite linear;
66
+ display: inline-block;
67
+ background-color: currentColor;
68
+ border: 0 solid currentColor;
69
+ &:nth-child(2n-1) {
70
+ animation-delay: -0.5s;
53
71
  }
54
- div + div {
55
- margin-left: 10px;
56
- }
57
- > div {
58
- position: relative;
59
- box-sizing: border-box;
60
- width: 20px;
61
- height: 20px;
62
- border-radius: 100%;
63
- animation: ball-beat .7s -.15s infinite linear;
64
- display: inline-block;
65
- background-color: currentColor;
66
- border: 0 solid currentColor;
67
- &:nth-child(2n-1) {
68
- animation-delay: -.5s;
69
- }
70
- }
71
- }
72
- }
72
+ }
73
+ }
74
+ }
@@ -4,9 +4,9 @@
4
4
  font-size: 0.875rem;
5
5
  color: $mediumGray;
6
6
  border: $lightGray 2px dashed;
7
- border-radius: .2rem;
7
+ border-radius: 0.2rem;
8
8
  cursor: pointer;
9
- transition: .1s all;
9
+ transition: 0.1s all;
10
10
 
11
11
  &.drag-active {
12
12
  background-color: $lightestGray;
@@ -12,7 +12,7 @@
12
12
 
13
13
  small {
14
14
  display: block;
15
- font-size: .8rem;
15
+ font-size: 0.8rem;
16
16
  font-style: italic;
17
17
  color: $mediumGray;
18
18
  }
@@ -37,7 +37,6 @@ a:not([class]) {
37
37
  text-decoration-skip-ink: auto;
38
38
  }
39
39
 
40
-
41
40
  img,
42
41
  picture {
43
42
  max-width: 100%;
@@ -51,7 +50,8 @@ select {
51
50
  font: inherit;
52
51
  }
53
52
 
54
- sub, sup {
53
+ sub,
54
+ sup {
55
55
  font-size: 75%;
56
56
  line-height: 0;
57
57
  position: relative;
@@ -1,7 +1,7 @@
1
1
  //@import "reset"; TODO: Enable after cove refactor
2
- @import "typography";
2
+ @import 'typography';
3
3
 
4
- @import "general";
5
- @import "heading";
4
+ @import 'general';
5
+ @import 'heading';
6
6
 
7
- @import "file-selector";
7
+ @import 'file-selector';