@microsoft/atlas-css 5.0.0-test.2 → 5.0.0-test.3

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 (59) hide show
  1. package/dist/class-names.json +1 -1
  2. package/dist/index.css +1 -1
  3. package/dist/index.css.map +1 -1
  4. package/dist/tokens.json +1 -1
  5. package/dist/tokens.ts +24 -14
  6. package/package.json +3 -3
  7. package/src/atomics/aspect-ratio.scss +0 -3
  8. package/src/atomics/background.scss +0 -3
  9. package/src/atomics/flex.scss +0 -1
  10. package/src/atomics/height.scss +0 -3
  11. package/src/atomics/image.scss +0 -3
  12. package/src/atomics/line-clamp.scss +0 -1
  13. package/src/atomics/list.scss +0 -3
  14. package/src/atomics/overflow.scss +0 -1
  15. package/src/atomics/shadow.scss +0 -1
  16. package/src/atomics/spacing-auto.scss +0 -1
  17. package/src/atomics/visually-hidden.scss +0 -1
  18. package/src/atomics/width.scss +0 -1
  19. package/src/components/badge.scss +0 -1
  20. package/src/components/breadcrumbs.scss +0 -1
  21. package/src/components/button-reset.scss +0 -1
  22. package/src/components/button.scss +0 -1
  23. package/src/components/form/help.scss +0 -1
  24. package/src/components/form/label.scss +0 -1
  25. package/src/components/gradient-card.scss +0 -1
  26. package/src/components/icon.scss +0 -3
  27. package/src/components/image.scss +0 -1
  28. package/src/components/index.scss +1 -0
  29. package/src/components/layout.scss +28 -144
  30. package/src/components/markdown.scss +1 -1
  31. package/src/components/media.scss +0 -1
  32. package/src/components/message.scss +0 -1
  33. package/src/components/persona.scss +0 -1
  34. package/src/components/reading-width.scss +10 -0
  35. package/src/components/scroll.scss +0 -3
  36. package/src/components/site-header.scss +3 -3
  37. package/src/components/steps.scss +0 -1
  38. package/src/components/stretched-link.scss +0 -1
  39. package/src/components/tag.scss +0 -1
  40. package/src/components/timeline.scss +0 -1
  41. package/src/core/animations.scss +0 -1
  42. package/src/core/bare-elements.scss +0 -1
  43. package/src/core/font-stack.scss +0 -1
  44. package/src/core/minireset.scss +0 -3
  45. package/src/core/normalize.scss +0 -3
  46. package/src/core/themes.scss +0 -1
  47. package/src/mixins/center.scss +0 -2
  48. package/src/mixins/colors.scss +0 -2
  49. package/src/mixins/force-colors.scss +0 -2
  50. package/src/mixins/gradient.scss +0 -2
  51. package/src/mixins/line-clamp.scss +0 -2
  52. package/src/mixins/overlay.scss +0 -2
  53. package/src/mixins/transparency.scss +0 -2
  54. package/src/mixins/unselectable.scss +0 -2
  55. package/src/mixins/visually-hidden.scss +0 -2
  56. package/src/tokens/breakpoints.scss +1 -1
  57. package/src/tokens/layout.scss +3 -1
  58. package/src/tokens/themes.scss +1 -1
  59. package/src/tokens/typography.scss +5 -1
@@ -5,12 +5,12 @@
5
5
  $quarter-widescreen: math.div(tokens.$breakpoint-widescreen, 4);
6
6
  $half-widescreen: math.div(tokens.$breakpoint-widescreen, 2);
7
7
  $three-quarters-widescreen: math.div(tokens.$breakpoint-widescreen, 4) * 3;
8
- $default-flyout-width-desktop: 320px;
9
- $default-flyout-width-widescreen: 480px;
10
- $default-aside-min-width: 300px;
11
- $eighth-widescreen: math.div(tokens.$breakpoint-widescreen, 8); // 225px
12
- $five-eighths-widescreen: math.div(tokens.$breakpoint-widescreen, 8) * 5; // 1125px
13
- $layout-menu-collapsed-width: 96px !default;
8
+ $default-flyout-width-desktop: 320px !default;
9
+ $default-flyout-width-widescreen: 480px !default;
10
+ $layout-menu-collapsed-width: 68px !default;
11
+ $menu-max-width: 275px !default;
12
+ $aside-max-width: 275px !default;
13
+ $spacer-width: calc(275px - var(#{tokens.$layout-menu-collapsed-width-name})) !default;
14
14
 
15
15
  :root {
16
16
  --window-inner-height: 100vh; // to be overwritten by JS
@@ -33,9 +33,8 @@ $layout-menu-collapsed-width: 96px !default;
33
33
  #{tokens.$layout-flyout-width-desktop-custom-property-name}
34
34
  );
35
35
  #{tokens.$layout-menu-collapsed-width-name}: $layout-menu-collapsed-width;
36
- #{tokens.$layout-menu-collapsed-width-widescreen-spacer-width-name}: calc(
37
- $quarter-widescreen - var(#{tokens.$layout-menu-collapsed-width-name})
38
- );
36
+ #{tokens.$layout-menu-max-width-name}: $menu-max-width;
37
+ #{tokens.$layout-aside-max-width-name}: $aside-max-width;
39
38
 
40
39
  @include mixins.widescreen {
41
40
  #{tokens.$layout-gap-scalable-custom-property-name}: tokens.$layout-widescreen-gap;
@@ -139,8 +138,8 @@ $layout-menu-collapsed-width: 96px !default;
139
138
 
140
139
  @include mixins.tablet {
141
140
  grid-template:
142
- minmax(auto, max-content) auto var(--atlas-contained-height) auto auto / minmax(0, 1fr)
143
- minmax(0, 2fr);
141
+ minmax(auto, max-content) auto var(--atlas-contained-height) auto auto /
142
+ minmax(0, 1fr) minmax(0, 2fr);
144
143
  grid-template-areas:
145
144
  'header header'
146
145
  'hero hero'
@@ -151,26 +150,16 @@ $layout-menu-collapsed-width: 96px !default;
151
150
 
152
151
  @include mixins.desktop {
153
152
  grid-template:
154
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 1fr) minmax(
155
- 0,
156
- 2fr
157
- )
158
- minmax(0, 1fr);
153
+ minmax(auto, max-content) auto var(--atlas-contained-height) auto /
154
+ minmax(0, 275px)
155
+ minmax(0, 1fr)
156
+ minmax(0, 275px);
159
157
  grid-template-areas:
160
158
  'header header header'
161
159
  'hero hero hero'
162
160
  'menu main aside'
163
161
  'footer footer footer';
164
162
  }
165
-
166
- @include mixins.widescreen {
167
- grid-template: minmax(auto, max-content) auto var(--atlas-contained-height) auto / auto #{$quarter-widescreen} #{$half-widescreen} #{$quarter-widescreen} auto;
168
- grid-template-areas:
169
- 'header header header header header'
170
- 'hero hero hero hero hero'
171
- '. menu main aside .'
172
- 'footer footer footer footer footer';
173
- }
174
163
  }
175
164
 
176
165
  &.layout-menu-collapsed .layout-body {
@@ -190,48 +179,23 @@ $layout-menu-collapsed-width: 96px !default;
190
179
 
191
180
  @include mixins.desktop {
192
181
  grid-template:
193
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / var(
194
- #{tokens.$layout-menu-collapsed-width-name}
195
- )
196
- minmax(0, 4fr)
197
- minmax(0, 23fr) minmax(0, 10fr);
182
+ minmax(auto, max-content) auto var(--atlas-contained-height) auto /
183
+ var(#{tokens.$layout-menu-collapsed-width-name})
184
+ #{$spacer-width}
185
+ minmax(0, 1fr)
186
+ minmax(0, 275px);
198
187
  grid-template-areas:
199
188
  'header header header header'
200
189
  'hero hero hero hero'
201
190
  'menu . main aside'
202
191
  'footer footer footer footer';
203
192
  }
204
-
205
- @include mixins.widescreen {
206
- grid-template:
207
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, auto) var(
208
- #{tokens.$layout-menu-collapsed-width-name}
209
- )
210
- minmax(0, var(#{tokens.$layout-menu-collapsed-width-widescreen-spacer-width-name}))
211
- $half-widescreen minmax(0, #{$quarter-widescreen}) minmax(0, auto);
212
- grid-template-areas:
213
- 'header header header header header header'
214
- 'hero hero hero hero hero hero'
215
- '. menu . main aside .'
216
- 'footer footer footer footer footer footer';
217
- }
218
193
  }
219
194
 
220
195
  &.layout-flyout-active .layout-body {
221
196
  @include mixins.desktop {
222
197
  grid-template:
223
- auto auto var(--atlas-contained-height) auto / minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr)
224
- var(#{tokens.$layout-flyout-width-name});
225
- grid-template-areas:
226
- 'header header header header'
227
- 'hero hero hero flyout'
228
- 'menu main aside flyout'
229
- 'footer footer footer footer';
230
- }
231
-
232
- @include mixins.widescreen {
233
- grid-template:
234
- auto auto var(--atlas-contained-height) auto / minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr)
198
+ auto auto var(--atlas-contained-height) auto / minmax(0, 1fr) minmax(0, 4fr) minmax(0, 1fr)
235
199
  var(#{tokens.$layout-flyout-width-name});
236
200
  grid-template-areas:
237
201
  'header header header header'
@@ -247,21 +211,8 @@ $layout-menu-collapsed-width: 96px !default;
247
211
  auto auto var(--atlas-contained-height) auto / var(
248
212
  #{tokens.$layout-menu-collapsed-width-name}
249
213
  )
250
- minmax(0, 2fr) minmax(0, 1fr)
251
- var(#{tokens.$layout-flyout-width-name});
252
- grid-template-areas:
253
- 'header header header header'
254
- 'hero hero hero flyout'
255
- 'menu main aside flyout'
256
- 'footer footer footer footer';
257
- }
258
-
259
- @include mixins.widescreen {
260
- grid-template:
261
- auto auto var(--atlas-contained-height) auto / var(
262
- #{tokens.$layout-menu-collapsed-width-name}
263
- )
264
- minmax(0, 2fr) minmax(0, 1fr)
214
+ minmax(0, 1fr)
215
+ minmax(0, 275px)
265
216
  var(#{tokens.$layout-flyout-width-name});
266
217
  grid-template-areas:
267
218
  'header header header header'
@@ -295,22 +246,13 @@ $layout-menu-collapsed-width: 96px !default;
295
246
  @include mixins.desktop {
296
247
  grid-template:
297
248
  minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 1fr)
298
- minmax(0, 3fr);
249
+ minmax(0, 5fr);
299
250
  grid-template-areas:
300
251
  'header header'
301
252
  'hero hero'
302
253
  'menu main'
303
254
  'footer footer';
304
255
  }
305
-
306
- @include mixins.widescreen {
307
- grid-template: minmax(auto, max-content) auto var(--atlas-contained-height) auto / auto #{$quarter-widescreen} #{$three-quarters-widescreen} auto;
308
- grid-template-areas:
309
- 'header header header header'
310
- 'hero hero hero hero'
311
- '. menu main .'
312
- 'footer footer footer footer';
313
- }
314
256
  }
315
257
 
316
258
  &.layout-menu-collapsed .layout-body {
@@ -332,28 +274,13 @@ $layout-menu-collapsed-width: 96px !default;
332
274
  minmax(auto, max-content) auto var(--atlas-contained-height) auto / var(
333
275
  #{tokens.$layout-menu-collapsed-width-name}
334
276
  )
335
- minmax(0, 4fr)
336
- minmax(0, 23fr) minmax(0, 10fr);
277
+ minmax(0, 2fr) minmax(0, 1fr);
337
278
  grid-template-areas:
338
279
  'header header header header'
339
280
  'hero hero hero hero'
340
281
  'menu . main main'
341
282
  'footer footer footer footer';
342
283
  }
343
-
344
- @include mixins.widescreen {
345
- grid-template:
346
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, auto) var(
347
- #{tokens.$layout-menu-collapsed-width-name}
348
- )
349
- minmax(0, var(#{tokens.$layout-menu-collapsed-width-widescreen-spacer-width-name}))
350
- #{$three-quarters-widescreen} minmax(0, auto);
351
- grid-template-areas:
352
- 'header header header header header'
353
- 'hero hero hero hero hero'
354
- '. menu . main .'
355
- 'footer footer footer footer footer';
356
- }
357
284
  }
358
285
 
359
286
  &.layout-flyout-active .layout-body {
@@ -361,21 +288,7 @@ $layout-menu-collapsed-width: 96px !default;
361
288
  grid-template:
362
289
  minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 1fr) minmax(
363
290
  0,
364
- 3fr
365
- )
366
- var(#{tokens.$layout-flyout-width-name});
367
- grid-template-areas:
368
- 'header header header'
369
- 'hero hero flyout'
370
- 'menu main flyout'
371
- 'footer footer footer';
372
- }
373
-
374
- @include mixins.widescreen {
375
- grid-template:
376
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 1fr) minmax(
377
- 0,
378
- 3fr
291
+ 4fr
379
292
  )
380
293
  var(#{tokens.$layout-flyout-width-name});
381
294
  grid-template-areas:
@@ -400,21 +313,6 @@ $layout-menu-collapsed-width: 96px !default;
400
313
  'menu main flyout'
401
314
  'footer footer footer';
402
315
  }
403
-
404
- @include mixins.widescreen {
405
- grid-template:
406
- auto auto var(--atlas-contained-height) auto / var(
407
- #{tokens.$layout-menu-collapsed-width-name}
408
- )
409
- minmax(0, var(#{tokens.$layout-menu-collapsed-width-widescreen-spacer-width-name}))
410
- minmax(0, 1fr)
411
- var(#{tokens.$layout-flyout-width-name});
412
- grid-template-areas:
413
- 'header header header header'
414
- 'hero hero hero flyout'
415
- 'menu . main flyout'
416
- 'footer footer footer footer';
417
- }
418
316
  }
419
317
  }
420
318
 
@@ -429,7 +327,7 @@ $layout-menu-collapsed-width: 96px !default;
429
327
 
430
328
  @include mixins.tablet {
431
329
  grid-template:
432
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 2fr)
330
+ minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 5fr)
433
331
  minmax(0, 1fr);
434
332
  grid-template-areas:
435
333
  'header header'
@@ -440,7 +338,7 @@ $layout-menu-collapsed-width: 96px !default;
440
338
 
441
339
  @include mixins.desktop {
442
340
  grid-template:
443
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 3fr)
341
+ minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 5fr)
444
342
  minmax(0, 1fr);
445
343
  grid-template-areas:
446
344
  'header header'
@@ -462,21 +360,7 @@ $layout-menu-collapsed-width: 96px !default;
462
360
  &.layout-flyout-active .layout-body {
463
361
  @include mixins.desktop {
464
362
  grid-template:
465
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 3fr) minmax(
466
- 0,
467
- 1fr
468
- )
469
- var(#{tokens.$layout-flyout-width-name});
470
- grid-template-areas:
471
- 'header header header'
472
- 'hero hero flyout'
473
- 'main aside flyout'
474
- 'footer footer footer';
475
- }
476
-
477
- @include mixins.widescreen {
478
- grid-template:
479
- minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 3fr) minmax(
363
+ minmax(auto, max-content) auto var(--atlas-contained-height) auto / minmax(0, 4fr) minmax(
480
364
  0,
481
365
  1fr
482
366
  )
@@ -21,7 +21,7 @@ $list-top-spacing: 1rem !default;
21
21
  .markdown {
22
22
  // @include mixins.responsive-font-size($markdown-paragraph-size, 0.875rem); // experiment only
23
23
  font-size: $markdown-paragraph-size;
24
- line-height: 1.6;
24
+ line-height: 1.75;
25
25
 
26
26
  // Inline code
27
27
 
@@ -1,5 +1,4 @@
1
1
  @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  .media {
5
4
  display: flex;
@@ -1,5 +1,4 @@
1
1
  @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  $message-font-size-xs: tokens.$font-size-9 !default;
5
4
  $message-font-size-sm: tokens.$font-size-8 !default;
@@ -1,5 +1,4 @@
1
1
  @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  $persona-font-size-sm: tokens.$font-size-9 !default;
5
4
  $persona-font-size-md: tokens.$font-size-8 !default;
@@ -0,0 +1,10 @@
1
+ @use '../tokens/typography.scss' as typography;
2
+
3
+ .reading-width {
4
+ max-width: typography.$optimal-reading-width;
5
+ }
6
+
7
+ .reading-width-padded {
8
+ width: typography.$reading-width-padded;
9
+ padding: typography.$reading-width-padding;
10
+ }
@@ -1,6 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
-
4
1
  .scroll-horizontal {
5
2
  overflow-x: auto;
6
3
  overflow-y: hidden;
@@ -72,9 +72,9 @@ $site-header-panel-featured-section-border: 1px solid tokens.$table-border-dark
72
72
  gap: $site-header-inline-gap;
73
73
  padding-inline: tokens.$layout-gap;
74
74
 
75
- @include mixins.widescreen {
76
- padding-inline: tokens.$layout-widescreen-gap;
77
- }
75
+ // @include mixins.widescreen {
76
+ // padding-inline: tokens.$layout-widescreen-gap;
77
+ // }
78
78
 
79
79
  .site-header-button {
80
80
  @include mixins.control;
@@ -1,5 +1,4 @@
1
1
  @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  $step-font-size: tokens.$font-size-7 !default;
5
4
  $steps-gap: 0.4375em !default;
@@ -1,5 +1,4 @@
1
1
  @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  .stretched-link {
5
4
  &::before {
@@ -1,5 +1,4 @@
1
1
  @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  /* stylelint-disable selector-max-specificity, no-descending-specificity */
5
4
 
@@ -1,6 +1,5 @@
1
1
  @use 'sass:math';
2
2
  @use '../tokens/index.scss' as tokens;
3
- @use '../mixins/index.scss' as mixins;
4
3
  $timeline-content-font-size: tokens.$font-size-8 !default;
5
4
  $timeline-timestamp-font-size: tokens.$font-size-9 !default;
6
5
  $timeline-timestamp-font-weight: tokens.$weight-semilight !default;
@@ -1,4 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
1
  @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  // stylelint-disable-next-line keyframes-name-pattern
@@ -1,5 +1,4 @@
1
1
  @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  // https://bugs.chromium.org/p/chromium/issues/detail?id=589475&q=details%20box-sizing&can=2
5
4
 
@@ -1,5 +1,4 @@
1
1
  @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
2
 
4
3
  html {
5
4
  font-size: tokens.$document-font-size;
@@ -1,6 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
-
4
1
  /* stylelint-disable */
5
2
  /*! minireset.css v0.0.7 | MIT License | github.com/jgthms/minireset.css */
6
3
  html,
@@ -1,6 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
- @use '../mixins/index.scss' as mixins;
3
-
4
1
  /* stylelint-disable */
5
2
  /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
6
3
 
@@ -1,6 +1,5 @@
1
1
  @use 'sass:map';
2
2
  @use '../tokens/index.scss' as tokens;
3
- @use '../mixins/index.scss' as mixins;
4
3
 
5
4
  $root-theme: 'light' !default;
6
5
  $print-theme: 'light' !default;
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  @mixin center($width, $height: 0) {
4
2
  position: absolute;
5
3
 
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  @mixin fill-current-color {
4
2
  fill: currentColor !important;
5
3
 
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  @mixin forced-colors() {
4
2
  @media (forced-colors: active) {
5
3
  @content;
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  @mixin gradient-text($startColor, $endColor) {
4
2
  /* stylelint-disable */
5
3
  -webkit-background-clip: text;
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  %line-clamp {
4
2
  /*stylelint-disable*/
5
3
  display: -webkit-box;
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  %overlay {
4
2
  position: absolute;
5
3
  inset: 0;
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  %transparent-effects {
4
2
  outline-color: inherit;
5
3
  background-color: transparent;
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  %unselectable {
4
2
  /* stylelint-disable */
5
3
  -webkit-touch-callout: none;
@@ -1,5 +1,3 @@
1
- @use '../tokens/index.scss' as tokens;
2
-
3
1
  @mixin visually-hidden() {
4
2
  position: absolute;
5
3
  width: 1px;
@@ -7,5 +7,5 @@ $container-gap: 64px !default;
7
7
  // Breakpoints
8
8
  $breakpoint-tablet: 768px !default;
9
9
  $breakpoint-desktop: 1088px !default;
10
- $breakpoint-widescreen: 1800px !default;
10
+ $breakpoint-widescreen: 2800px !default;
11
11
  //@end-sass-export-section
@@ -22,5 +22,7 @@ $layout-flyout-width-name: '--layout-flyout-width' !default;
22
22
  $layout-flyout-width-desktop-custom-property-name: '--layout-flyout-width-desktop' !default;
23
23
  $layout-flyout-width-widescreen-custom-property-name: '--layout-flyout-width-widescreen' !default;
24
24
  $layout-menu-collapsed-width-name: '--layout-menu-collapsed-width' !default;
25
- $layout-menu-collapsed-width-widescreen-spacer-width-name: '--layout-menu-collapsed-width-widescreen' !default;
25
+ $layout-menu-collapsed-spacer-desktop-width-name: '--layout-menu-collapsed-spacer-desktop-width' !default;
26
+ $layout-menu-max-width-name: '--layout-menu-max-width' !default;
27
+ $layout-aside-max-width-name: '--layout-aside-max-width' !default;
26
28
  //@end-sass-export-section
@@ -18,7 +18,7 @@ $themes: (
18
18
  'overlay-invert': palette.$palette-white,
19
19
  'body-background': palette.$palette-white,
20
20
  'body-background-accent': palette.$palette-yellow-sand,
21
- 'body-background-medium': palette.$palette-grey-20-deprecated,
21
+ 'body-background-medium': palette.$palette-grey-10-deprecated,
22
22
  'alternate-background': palette.$palette-grey-120-deprecated,
23
23
  'alternate-background-medium': palette.$palette-grey-110-deprecated,
24
24
  'card-background': palette.$palette-white,
@@ -28,6 +28,10 @@ $letter-spacing-medium: 0.125rem;
28
28
  $letter-spacing-wide: 0.225rem;
29
29
 
30
30
  // Line height
31
- $line-height-normal: 1.3;
31
+ $line-height-normal: 1.4;
32
32
 
33
+ // Reading width
34
+ $optimal-reading-width: 688px;
35
+ $reading-width-padding: 24px;
36
+ $reading-width-padded: $optimal-reading-width + ($reading-width-padding * 2);
33
37
  //@end-sass-export-section