@helsenorge/designsystem-react 10.6.0 → 10.6.1
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 +844 -1402
- package/components/AnchorLink/styles.module.scss +0 -1
- package/components/Button/styles.module.scss +13 -13
- package/components/Checkbox/styles.module.scss +2 -2
- package/components/Chip/styles.module.scss +0 -1
- package/components/Close/styles.module.scss +2 -2
- package/components/Drawer/styles.module.scss +12 -12
- package/components/Dropdown/styles.module.scss +5 -5
- package/components/Duolist/styles.module.scss +2 -2
- package/components/EmptyState/styles.module.scss +5 -5
- package/components/ErrorWrapper/styles.module.scss +2 -2
- package/components/Expander/styles.module.scss +8 -8
- package/components/ExpanderHierarchy/expander.module.scss +7 -7
- package/components/ExpanderList/styles.module.scss +3 -3
- package/components/FormGroup/styles.module.scss +1 -1
- package/components/HelpBubble/styles.module.scss +2 -2
- package/components/HelpQuestion/styles.module.scss +2 -2
- package/components/HighlightPanel/styles.module.scss +2 -2
- package/components/HorizontalScroll/styles.module.scss +1 -1
- package/components/Input/styles.module.scss +3 -3
- package/components/Label/styles.module.scss +2 -2
- package/components/LinkList/styles.module.scss +3 -3
- package/components/ListHeader/styles.module.scss +1 -1
- package/components/MaxCharacters/styles.module.scss +2 -2
- package/components/Modal/styles.module.scss +16 -16
- package/components/NotificationPanel/styles.module.scss +8 -8
- package/components/Panel/styles.module.scss +16 -16
- package/components/PanelList/styles.module.scss +2 -2
- package/components/PopMenu/styles.module.scss +2 -2
- package/components/PopOver/styles.module.scss +2 -2
- package/components/PromoPanel/styles.module.scss +9 -9
- package/components/RadioButton/styles.module.scss +2 -2
- package/components/Select/styles.module.scss +3 -3
- package/components/ServiceMessage/styles.module.scss +1 -1
- package/components/SharingStatus/styles.module.scss +1 -1
- package/components/Slider/styles.module.scss +2 -2
- package/components/StatusDot/styles.module.scss +3 -3
- package/components/StepButtons/styles.module.scss +3 -3
- package/components/Stepper/styles.module.scss +2 -2
- package/components/StickyNote/styles.module.scss +1 -1
- package/components/Table/styles.module.scss +1 -1
- package/components/Tabs/TabList/styles.module.scss +2 -2
- package/components/Tabs/TabPanel/styles.module.scss +3 -3
- package/components/Tabs/styles.module.scss +3 -3
- package/components/Tag/styles.module.scss +1 -1
- package/components/TagList/styles.module.scss +1 -1
- package/components/Textarea/styles.module.scss +1 -1
- package/components/Tile/styles.module.scss +7 -7
- package/components/Toggle/styles.module.scss +5 -5
- package/components/Validation/styles.module.scss +2 -2
- package/package.json +1 -1
- package/scss/_font-mixins.scss +21 -21
- package/scss/_input.scss +2 -2
- package/scss/_print.scss +3 -3
- package/scss/_reset.scss +1 -1
- package/scss/helsenorge.scss +7 -7
- package/scss/typography.module.scss +4 -4
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@use '../../scss/spacers' as spacers;
|
|
3
3
|
@use '../../scss/palette' as palette;
|
|
4
4
|
@use '../../scss/font-settings' as font-settings;
|
|
5
|
-
@use '../../scss/breakpoints' as
|
|
5
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
6
6
|
|
|
7
7
|
.modal-overlay {
|
|
8
8
|
background: rgb(51 51 51 / 75%);
|
|
@@ -78,22 +78,22 @@
|
|
|
78
78
|
width: calc(100vw - 0.75rem);
|
|
79
79
|
padding-bottom: spacers.getSpacer(l);
|
|
80
80
|
|
|
81
|
-
@media (max-width: map.get(
|
|
81
|
+
@media (max-width: map.get(breakpoints.$grid-breakpoints, sm)) {
|
|
82
82
|
p {
|
|
83
83
|
font-size: 1.125rem;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
@media (min-width: map.get(
|
|
87
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
88
88
|
padding-bottom: spacers.getSpacer(xl);
|
|
89
89
|
width: 612px;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
@media (min-width: map.get(
|
|
92
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
93
93
|
width: 696px;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
@include tiny-screens-media-query {
|
|
96
|
+
@include breakpoints.tiny-screens-media-query {
|
|
97
97
|
padding-bottom: spacers.getSpacer(2xs);
|
|
98
98
|
}
|
|
99
99
|
}
|
|
@@ -102,11 +102,11 @@
|
|
|
102
102
|
width: calc(100vw - 0.75rem);
|
|
103
103
|
padding-bottom: spacers.getSpacer(m);
|
|
104
104
|
|
|
105
|
-
@media (min-width: map.get(
|
|
105
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
106
106
|
width: 335px;
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
-
@media (min-width: map.get(
|
|
109
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
110
110
|
width: 515px;
|
|
111
111
|
}
|
|
112
112
|
}
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
&--image {
|
|
119
119
|
padding: 0;
|
|
120
120
|
|
|
121
|
-
@media (min-width: map.get(
|
|
121
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
122
122
|
max-height: calc(100vh - 24px);
|
|
123
123
|
max-width: calc(100vw - 24px);
|
|
124
124
|
width: 100%;
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
max-height: none;
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
-
@include tiny-screens-media-query {
|
|
184
|
+
@include breakpoints.tiny-screens-media-query {
|
|
185
185
|
max-height: calc(100dvh - 4rem);
|
|
186
186
|
}
|
|
187
187
|
|
|
@@ -193,11 +193,11 @@
|
|
|
193
193
|
&--large {
|
|
194
194
|
padding: spacers.getSpacer(xl) spacers.getSpacer(m) spacers.getSpacer(2xs);
|
|
195
195
|
|
|
196
|
-
@media (min-width: map.get(
|
|
196
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
197
197
|
padding: spacers.getSpacer(xl) spacers.getSpacer(xl) spacers.getSpacer(2xs);
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
-
@include tiny-screens-media-query {
|
|
200
|
+
@include breakpoints.tiny-screens-media-query {
|
|
201
201
|
padding: spacers.getSpacer(2xs) spacers.getSpacer(2xs) spacers.getSpacer(4xs);
|
|
202
202
|
}
|
|
203
203
|
}
|
|
@@ -205,11 +205,11 @@
|
|
|
205
205
|
&--medium {
|
|
206
206
|
padding: spacers.getSpacer(l) spacers.getSpacer(m) spacers.getSpacer(2xs);
|
|
207
207
|
|
|
208
|
-
@media (min-width: map.get(
|
|
208
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
209
209
|
padding: spacers.getSpacer(xl) spacers.getSpacer(m) spacers.getSpacer(2xs);
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
@include tiny-screens-media-query {
|
|
212
|
+
@include breakpoints.tiny-screens-media-query {
|
|
213
213
|
padding: spacers.getSpacer(2xs) spacers.getSpacer(3xs) spacers.getSpacer(4xs);
|
|
214
214
|
}
|
|
215
215
|
}
|
|
@@ -260,11 +260,11 @@
|
|
|
260
260
|
&--large {
|
|
261
261
|
padding: spacers.getSpacer(l) spacers.getSpacer(m) 0;
|
|
262
262
|
|
|
263
|
-
@media (min-width: map.get(
|
|
263
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
264
264
|
padding: spacers.getSpacer(l) spacers.getSpacer(xl) 0;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
@include tiny-screens-media-query {
|
|
267
|
+
@include breakpoints.tiny-screens-media-query {
|
|
268
268
|
padding: spacers.getSpacer(2xs) spacers.getSpacer(2xs) 0;
|
|
269
269
|
}
|
|
270
270
|
}
|
|
@@ -272,7 +272,7 @@
|
|
|
272
272
|
&--medium {
|
|
273
273
|
padding: spacers.getSpacer(m) spacers.getSpacer(m) 0;
|
|
274
274
|
|
|
275
|
-
@include tiny-screens-media-query {
|
|
275
|
+
@include breakpoints.tiny-screens-media-query {
|
|
276
276
|
padding: spacers.getSpacer(2xs) spacers.getSpacer(2xs) 0;
|
|
277
277
|
}
|
|
278
278
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
@use '../../scss/font-settings' as font-settings;
|
|
4
4
|
@use '../../scss/palette' as palette;
|
|
5
5
|
@use '../AnchorLink/styles.module' as anchorlink;
|
|
6
|
-
@use '../../scss/breakpoints' as
|
|
6
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
7
7
|
|
|
8
8
|
.notification-panel {
|
|
9
9
|
$panel: &;
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
box-shadow: 0.25rem 0.25rem 0.375rem rgb(0 0 0 / 15%);
|
|
14
14
|
border-radius: 0.25rem;
|
|
15
15
|
|
|
16
|
-
@media (min-width: map.get(
|
|
16
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
17
17
|
padding-left: spacers.getSpacer(s);
|
|
18
18
|
padding-right: spacers.getSpacer(m);
|
|
19
19
|
#{$panel}__icon {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
line-height: 1.25rem;
|
|
28
28
|
box-shadow: none;
|
|
29
29
|
|
|
30
|
-
@media (min-width: map.get(
|
|
30
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
31
31
|
padding-left: spacers.getSpacer(2xs);
|
|
32
32
|
padding-right: spacers.getSpacer(s);
|
|
33
33
|
}
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
&--small {
|
|
48
|
-
max-width: map.get(
|
|
48
|
+
max-width: map.get(breakpoints.$grid-breakpoints, sm);
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
&--medium {
|
|
52
|
-
max-width: map.get(
|
|
52
|
+
max-width: map.get(breakpoints.$grid-breakpoints, md);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
&--large {
|
|
56
|
-
max-width: map.get(
|
|
56
|
+
max-width: map.get(breakpoints.$grid-breakpoints, lg);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
&--info {
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
line-height: font-settings.$lineheight-size-xs;
|
|
134
134
|
margin: 0;
|
|
135
135
|
|
|
136
|
-
@media (min-width: map.get(
|
|
136
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
137
137
|
font-size: font-settings.$font-size-sm;
|
|
138
138
|
line-height: 1.625rem;
|
|
139
139
|
}
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
&--expander-no-label {
|
|
174
174
|
margin: spacers.getSpacer(2xs) 0 0;
|
|
175
175
|
|
|
176
|
-
@media (max-width: map.get(
|
|
176
|
+
@media (max-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
177
177
|
padding-top: 0;
|
|
178
178
|
}
|
|
179
179
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
@use '../../scss/spacers' as spacers;
|
|
3
3
|
@use '../../scss/palette' as palette;
|
|
4
4
|
@use '../../scss/font-settings' as font-settings;
|
|
5
|
-
@use '../../scss/breakpoints' as
|
|
5
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
6
6
|
|
|
7
7
|
@mixin panel-padding {
|
|
8
8
|
padding: spacers.getSpacer(s);
|
|
9
9
|
|
|
10
|
-
@media (min-width: map.get(
|
|
10
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
11
11
|
padding: spacers.getSpacer(l) spacers.getSpacer(m) spacers.getSpacer(l) spacers.getSpacer(l);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
@mixin panel-padding-icon {
|
|
16
16
|
padding: spacers.getSpacer(m) spacers.getSpacer(s) spacers.getSpacer(l);
|
|
17
17
|
|
|
18
|
-
@media (min-width: map.get(
|
|
18
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
19
19
|
padding: spacers.getSpacer(m) spacers.getSpacer(m) spacers.getSpacer(l);
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -58,7 +58,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
58
58
|
gap: $layout-sm-gap $layout-sm-gap;
|
|
59
59
|
width: 100%;
|
|
60
60
|
|
|
61
|
-
@media (min-width: map.get(
|
|
61
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
62
62
|
column-gap: $layout-md-col-gap;
|
|
63
63
|
}
|
|
64
64
|
}
|
|
@@ -68,7 +68,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
68
68
|
grid-template-columns: auto 1fr;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
@media (min-width: map.get(
|
|
71
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
72
72
|
grid-template-rows: auto auto;
|
|
73
73
|
grid-template-columns: 1fr auto;
|
|
74
74
|
|
|
@@ -87,7 +87,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
87
87
|
grid-template-columns: auto 1fr;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
@media (min-width: map.get(
|
|
90
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
91
91
|
grid-template-rows: auto auto;
|
|
92
92
|
grid-template-columns: 1fr auto;
|
|
93
93
|
|
|
@@ -104,7 +104,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
@media (min-width: map.get(
|
|
107
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
108
108
|
grid-template-columns: minmax(auto, 760px) auto;
|
|
109
109
|
|
|
110
110
|
&--with-icon {
|
|
@@ -123,7 +123,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
123
123
|
row-gap: $layout-sm-gap;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
@media (min-width: map.get(
|
|
126
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
127
127
|
grid-template-rows: auto;
|
|
128
128
|
|
|
129
129
|
&--a {
|
|
@@ -171,13 +171,13 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
171
171
|
|
|
172
172
|
&--layout-1,
|
|
173
173
|
&--layout-2 {
|
|
174
|
-
@media (min-width: map.get(
|
|
174
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
175
175
|
grid-row: span 2;
|
|
176
176
|
padding-right: spacers.getSpacer(2xs);
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
-
@media (min-width: map.get(
|
|
180
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
181
181
|
grid-row: span 2;
|
|
182
182
|
padding-right: spacers.getSpacer(2xs);
|
|
183
183
|
}
|
|
@@ -185,7 +185,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
185
185
|
&--layout-3 {
|
|
186
186
|
grid-row: span 2;
|
|
187
187
|
|
|
188
|
-
@media (min-width: map.get(
|
|
188
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
189
189
|
grid-row: span 1;
|
|
190
190
|
}
|
|
191
191
|
}
|
|
@@ -203,7 +203,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
203
203
|
justify-content: flex-end;
|
|
204
204
|
|
|
205
205
|
&--no-content-b {
|
|
206
|
-
@media (min-width: map.get(
|
|
206
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
207
207
|
flex-direction: row;
|
|
208
208
|
grid-column: span 2;
|
|
209
209
|
}
|
|
@@ -217,7 +217,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
217
217
|
&__details-btn {
|
|
218
218
|
align-self: flex-start;
|
|
219
219
|
|
|
220
|
-
@media (min-width: map.get(
|
|
220
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
221
221
|
align-self: flex-end;
|
|
222
222
|
margin-left: auto;
|
|
223
223
|
}
|
|
@@ -350,7 +350,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
350
350
|
}
|
|
351
351
|
}
|
|
352
352
|
|
|
353
|
-
@media (max-width: map.get(
|
|
353
|
+
@media (max-width: map.get(breakpoints.$grid-max-breakpoints, xs)) {
|
|
354
354
|
display: flex;
|
|
355
355
|
justify-content: space-between;
|
|
356
356
|
align-items: center;
|
|
@@ -409,7 +409,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
409
409
|
display: flex;
|
|
410
410
|
flex-direction: column;
|
|
411
411
|
|
|
412
|
-
@media (min-width: map.get(
|
|
412
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
413
413
|
padding-top: spacers.getSpacer(xs);
|
|
414
414
|
flex-direction: row;
|
|
415
415
|
}
|
|
@@ -419,7 +419,7 @@ $layout-md-col-gap: spacers.getSpacer(m);
|
|
|
419
419
|
align-items: center;
|
|
420
420
|
padding-bottom: spacers.getSpacer(2xs);
|
|
421
421
|
|
|
422
|
-
@media (min-width: map.get(
|
|
422
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
423
423
|
padding-top: 0;
|
|
424
424
|
padding-right: spacers.getSpacer(m);
|
|
425
425
|
padding-bottom: 0;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
2
|
@use '../../scss/spacers' as spacers;
|
|
3
3
|
@use '../../scss/palette' as palette;
|
|
4
|
-
@use '../../scss/breakpoints' as
|
|
4
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
5
5
|
|
|
6
6
|
.panel-list {
|
|
7
7
|
&__panel:not(:last-child) {
|
|
8
8
|
margin-bottom: spacers.getSpacer(2xs);
|
|
9
9
|
|
|
10
|
-
@media (min-width: map.get(
|
|
10
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
11
11
|
margin-bottom: spacers.getSpacer(s);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
2
|
@use '../../scss/palette' as palette;
|
|
3
|
-
@use '../../scss/breakpoints' as
|
|
3
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
4
4
|
|
|
5
5
|
.pop-menu-button {
|
|
6
6
|
padding: 0;
|
|
@@ -111,7 +111,7 @@ html :focus > .pop-menu-button {
|
|
|
111
111
|
border: 0.125rem solid rgb(24 128 151);
|
|
112
112
|
box-shadow: 0 0 0.3125rem 0 rgb(0 0 0 / 50%);
|
|
113
113
|
|
|
114
|
-
@media (min-width: map.get(
|
|
114
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
115
115
|
width: 26.125rem;
|
|
116
116
|
}
|
|
117
117
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@use '../../scss/spacers' as spacers;
|
|
3
3
|
@use '../../scss/palette' as palette;
|
|
4
4
|
@use '../../scss/font-settings' as font-settings;
|
|
5
|
-
@use '../../scss/breakpoints' as
|
|
5
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
6
6
|
|
|
7
7
|
.popover {
|
|
8
8
|
$popover: &;
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
border-radius: 0.5625rem;
|
|
23
23
|
box-shadow: 0 0.125rem 1.125rem 0 rgb(0 0 0 / 15%);
|
|
24
24
|
|
|
25
|
-
@media (min-width: map.get(
|
|
25
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
26
26
|
font-size: font-settings.$font-size-md;
|
|
27
27
|
line-height: font-settings.$lineheight-size-md;
|
|
28
28
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
2
|
@use '../../scss/palette' as palette;
|
|
3
3
|
@use '../../scss/spacers' as spacers;
|
|
4
|
-
@use '../../scss/breakpoints' as
|
|
4
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
5
5
|
|
|
6
6
|
$colors: 'neutral', 'blueberry', 'cherry';
|
|
7
7
|
|
|
@@ -21,22 +21,22 @@ $colors: 'neutral', 'blueberry', 'cherry';
|
|
|
21
21
|
inset 0 0 0 2px palette.$black;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
-
@media (min-width: map.get(
|
|
24
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, xs)) {
|
|
25
25
|
padding-left: 0;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
@media (min-width: map.get(
|
|
28
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, sm)) {
|
|
29
29
|
padding-right: spacers.getSpacer(s);
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
@media (min-width: map.get(
|
|
32
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
33
33
|
padding-right: spacers.getSpacer(l);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
&--no-illustration {
|
|
37
37
|
padding-left: spacers.getSpacer(s);
|
|
38
38
|
|
|
39
|
-
@media (min-width: map.get(
|
|
39
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
40
40
|
padding-left: spacers.getSpacer(l);
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -54,7 +54,7 @@ $colors: 'neutral', 'blueberry', 'cherry';
|
|
|
54
54
|
&__illustration {
|
|
55
55
|
display: none;
|
|
56
56
|
|
|
57
|
-
@media (min-width: map.get(
|
|
57
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, xs)) {
|
|
58
58
|
display: inline;
|
|
59
59
|
}
|
|
60
60
|
}
|
|
@@ -67,7 +67,7 @@ $colors: 'neutral', 'blueberry', 'cherry';
|
|
|
67
67
|
padding-top: spacers.getSpacer(m);
|
|
68
68
|
padding-bottom: spacers.getSpacer(m);
|
|
69
69
|
|
|
70
|
-
@media (min-width: map.get(
|
|
70
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
71
71
|
gap: spacers.getSpacer(2xs);
|
|
72
72
|
padding-top: spacers.getSpacer(l);
|
|
73
73
|
padding-bottom: spacers.getSpacer(l);
|
|
@@ -89,11 +89,11 @@ $colors: 'neutral', 'blueberry', 'cherry';
|
|
|
89
89
|
&__icon {
|
|
90
90
|
margin-left: spacers.getSpacer(xs);
|
|
91
91
|
|
|
92
|
-
@media (min-width: map.get(
|
|
92
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, sm)) {
|
|
93
93
|
margin-left: spacers.getSpacer(s);
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
-
@media (min-width: map.get(
|
|
96
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, lg)) {
|
|
97
97
|
margin-left: spacers.getSpacer(l);
|
|
98
98
|
}
|
|
99
99
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
@use '../../scss/spacers' as spacers;
|
|
5
5
|
@use '../../scss/palette' as palette;
|
|
6
6
|
@use '../../scss/font-settings' as font-settings;
|
|
7
|
-
@use '../../scss/breakpoints' as
|
|
7
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
8
8
|
|
|
9
9
|
@mixin dashed-border() {
|
|
10
10
|
box-shadow: none;
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
@media (min-width: map.get(
|
|
166
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
167
167
|
&__large {
|
|
168
168
|
padding: 1.68rem spacers.getSpacer(l);
|
|
169
169
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@use '../../scss/spacers' as spacers;
|
|
3
3
|
@use '../../scss/palette' as palette;
|
|
4
4
|
@use '../../scss/font-settings' as font-settings;
|
|
5
|
-
@use '../../scss/breakpoints' as
|
|
5
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
6
6
|
|
|
7
7
|
.select-wrapper {
|
|
8
8
|
display: flex;
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
line-height: font-settings.$lineheight-size-sm;
|
|
66
66
|
border-radius: 0;
|
|
67
67
|
|
|
68
|
-
@media (min-width: map.get(
|
|
68
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
69
69
|
height: 3.125rem;
|
|
70
70
|
font-size: font-settings.$font-size-md;
|
|
71
71
|
}
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
font-family: inherit;
|
|
99
99
|
font-size: font-settings.$font-size-sm;
|
|
100
100
|
|
|
101
|
-
@media (min-width: map.get(
|
|
101
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
102
102
|
font-size: font-settings.$font-size-md;
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@use '../../scss/spacers' as spacers;
|
|
2
2
|
@use '../../scss/palette' as palette;
|
|
3
3
|
@use '../../scss/screen-reader' as *;
|
|
4
|
-
@use '../../scss/breakpoints' as
|
|
5
|
-
@import '../../scss/supernova/styles/colors';
|
|
4
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
5
|
+
@import '../../scss/supernova/styles/colors.css';
|
|
6
6
|
|
|
7
7
|
$track-height-offset: 1rem;
|
|
8
8
|
$mark-size: spacers.getSpacer(l);
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
@use '../../scss/palette' as palette;
|
|
4
4
|
@use '../../scss/font-settings' as font-settings;
|
|
5
5
|
@use '../../scss/screen-reader' as *;
|
|
6
|
-
@use '../../scss/breakpoints' as
|
|
6
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
7
7
|
|
|
8
8
|
$status-dot-size: 0.937rem;
|
|
9
9
|
|
|
@@ -15,7 +15,7 @@ $status-dot-size: 0.937rem;
|
|
|
15
15
|
line-height: 1.4rem;
|
|
16
16
|
font-weight: 400;
|
|
17
17
|
|
|
18
|
-
@media (min-width: map.get(
|
|
18
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, sm)) {
|
|
19
19
|
font-size: font-settings.$font-size-sm;
|
|
20
20
|
line-height: 1.6rem;
|
|
21
21
|
}
|
|
@@ -37,7 +37,7 @@ $status-dot-size: 0.937rem;
|
|
|
37
37
|
min-width: $status-dot-size;
|
|
38
38
|
min-height: $status-dot-size;
|
|
39
39
|
|
|
40
|
-
@media (min-width: map.get(
|
|
40
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, sm)) {
|
|
41
41
|
top: spacers.getSpacer(3xs);
|
|
42
42
|
}
|
|
43
43
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@use '../../scss/spacers' as spacers;
|
|
3
3
|
@use '../../scss/palette' as palette;
|
|
4
4
|
@use '../../scss/screen-reader' as *;
|
|
5
|
-
@use '../../scss/breakpoints' as
|
|
5
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
6
6
|
|
|
7
7
|
.stepbuttons {
|
|
8
8
|
margin-top: spacers.getSpacer(m);
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
display: flex;
|
|
22
22
|
gap: spacers.getSpacer(s);
|
|
23
23
|
|
|
24
|
-
@media (max-width: map.get(
|
|
24
|
+
@media (max-width: map.get(breakpoints.$grid-max-breakpoints, xs)) {
|
|
25
25
|
width: 100%;
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
&__button {
|
|
34
34
|
&--back,
|
|
35
35
|
&--forward {
|
|
36
|
-
@media (max-width: map.get(
|
|
36
|
+
@media (max-width: map.get(breakpoints.$grid-max-breakpoints, xs)) {
|
|
37
37
|
width: 50%;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
@use '../../scss/spacers' as spacers;
|
|
3
3
|
@use '../../scss/palette' as palette;
|
|
4
4
|
@use '../../scss/font-settings' as font-settings;
|
|
5
|
-
@use '../../scss/breakpoints' as
|
|
5
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
6
6
|
|
|
7
7
|
.stepper-wrapper {
|
|
8
8
|
display: flex;
|
|
9
9
|
align-items: center;
|
|
10
10
|
min-height: spacers.getSpacer(l);
|
|
11
11
|
|
|
12
|
-
@media (min-width: map.get(
|
|
12
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
13
13
|
min-height: spacers.getSpacer(xl);
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
@use '../../scss/spacers' as spacers;
|
|
5
5
|
@use '../../scss/palette' as palette;
|
|
6
6
|
@use '../../scss/font-settings' as font-settings;
|
|
7
|
-
@
|
|
7
|
+
@import '../../scss/breakpoints';
|
|
8
8
|
@import '../../scss/grid';
|
|
9
9
|
|
|
10
10
|
/* fix outline for Safari */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
|
-
@use '../../../scss/breakpoints' as
|
|
2
|
+
@use '../../../scss/breakpoints' as breakpoints;
|
|
3
3
|
@import '../../../scss/supernova/styles/colors';
|
|
4
4
|
|
|
5
5
|
.tab-list {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
display: none; /* Safari */
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
@media (min-width: map.get(
|
|
28
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
29
29
|
padding-left: 0;
|
|
30
30
|
padding-right: 0;
|
|
31
31
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
2
|
@use '../../../scss/spacers' as spacers;
|
|
3
3
|
@use '../../../scss/palette' as palette;
|
|
4
|
-
@use '../../../scss/breakpoints' as
|
|
4
|
+
@use '../../../scss/breakpoints' as breakpoints;
|
|
5
5
|
@import '../../../scss/supernova/styles/colors';
|
|
6
6
|
|
|
7
7
|
.tab-panel {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
@media (min-width: map.get(
|
|
21
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
22
22
|
border-radius: 0 0 0.5rem 0.5rem;
|
|
23
23
|
border: 1px solid var(--color-action-border-onlight-focus);
|
|
24
24
|
border-top: 0;
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
&#{$tab-panel}--first {
|
|
28
28
|
border-radius: 0;
|
|
29
29
|
|
|
30
|
-
@media (min-width: map.get(
|
|
30
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
31
31
|
border-radius: 0 0 0.5rem 0.5rem;
|
|
32
32
|
}
|
|
33
33
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
|
-
@use '../../scss/breakpoints' as
|
|
3
|
-
@import '../../scss/supernova/styles/colors';
|
|
2
|
+
@use '../../scss/breakpoints' as breakpoints;
|
|
3
|
+
@import '../../scss/supernova/styles/colors.css';
|
|
4
4
|
|
|
5
5
|
.tab-list-wrapper {
|
|
6
6
|
position: relative;
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
border-radius: 0;
|
|
22
22
|
height: 50px;
|
|
23
23
|
|
|
24
|
-
@media (min-width: map.get(
|
|
24
|
+
@media (min-width: map.get(breakpoints.$grid-breakpoints, md)) {
|
|
25
25
|
border-right: 1px solid var(--color-action-border-onlight-focus);
|
|
26
26
|
border-left: 1px solid var(--color-action-border-onlight-focus);
|
|
27
27
|
height: 50px;
|