@guardian/stand 0.0.34 → 0.0.36

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 (64) hide show
  1. package/dist/components/grid/Grid.cjs +37 -0
  2. package/dist/components/grid/Grid.js +14 -0
  3. package/dist/components/grid/styles.cjs +106 -0
  4. package/dist/components/grid/styles.js +98 -0
  5. package/dist/components/layout/Layout.cjs +114 -0
  6. package/dist/components/layout/Layout.js +83 -0
  7. package/dist/components/layout/styles.cjs +92 -0
  8. package/dist/components/layout/styles.js +83 -0
  9. package/dist/grid.cjs +10 -0
  10. package/dist/grid.js +2 -0
  11. package/dist/index.cjs +4 -0
  12. package/dist/index.js +2 -0
  13. package/dist/layout.cjs +10 -0
  14. package/dist/layout.js +2 -0
  15. package/dist/styleD/build/css/base/typography.css +2 -2
  16. package/dist/styleD/build/css/component/TopBar.css +2 -2
  17. package/dist/styleD/build/css/component/alertBanner.css +1 -1
  18. package/dist/styleD/build/css/component/autocomplete.css +1 -1
  19. package/dist/styleD/build/css/component/avatar.css +1 -1
  20. package/dist/styleD/build/css/component/button.css +3 -3
  21. package/dist/styleD/build/css/component/checkbox.css +2 -2
  22. package/dist/styleD/build/css/component/favicon.css +1 -1
  23. package/dist/styleD/build/css/component/form.css +1 -1
  24. package/dist/styleD/build/css/component/grid.css +14 -0
  25. package/dist/styleD/build/css/component/inlineMessage.css +1 -1
  26. package/dist/styleD/build/css/component/layout.css +30 -0
  27. package/dist/styleD/build/css/component/link.css +1 -1
  28. package/dist/styleD/build/css/component/menu.css +3 -3
  29. package/dist/styleD/build/css/component/radioGroup.css +3 -3
  30. package/dist/styleD/build/css/component/select.css +2 -2
  31. package/dist/styleD/build/css/component/tagTable.css +1 -1
  32. package/dist/styleD/build/css/component/textArea.css +2 -2
  33. package/dist/styleD/build/css/component/textInput.css +2 -2
  34. package/dist/styleD/build/css/component/userMenu.css +6 -6
  35. package/dist/styleD/build/css/semantic/breakpoints.css +3 -12
  36. package/dist/styleD/build/css/semantic/typography.css +61 -61
  37. package/dist/styleD/build/typescript/component/grid.cjs +16 -0
  38. package/dist/styleD/build/typescript/component/grid.js +14 -0
  39. package/dist/styleD/build/typescript/component/layout.cjs +48 -0
  40. package/dist/styleD/build/typescript/component/layout.js +46 -0
  41. package/dist/styleD/build/typescript/component/link.cjs +1 -1
  42. package/dist/styleD/build/typescript/component/link.js +1 -1
  43. package/dist/styleD/build/typescript/semantic/breakpoints.cjs +3 -24
  44. package/dist/styleD/build/typescript/semantic/breakpoints.js +3 -24
  45. package/dist/styleD/utils/semantic/mq.cjs +4 -4
  46. package/dist/styleD/utils/semantic/mq.js +4 -4
  47. package/dist/types/components/grid/Grid.d.ts +3 -0
  48. package/dist/types/components/grid/sandbox.d.ts +5 -0
  49. package/dist/types/components/grid/styles.d.ts +11 -0
  50. package/dist/types/components/grid/styles.test.d.ts +1 -0
  51. package/dist/types/components/grid/types.d.ts +25 -0
  52. package/dist/types/components/layout/Layout.d.ts +19 -0
  53. package/dist/types/components/layout/sandbox.d.ts +5 -0
  54. package/dist/types/components/layout/styles.d.ts +16 -0
  55. package/dist/types/components/layout/types.d.ts +20 -0
  56. package/dist/types/components/topbar/styles.d.ts +2 -2
  57. package/dist/types/grid.d.ts +20 -0
  58. package/dist/types/index.d.ts +4 -0
  59. package/dist/types/layout.d.ts +20 -0
  60. package/dist/types/styleD/build/typescript/component/grid.d.ts +16 -0
  61. package/dist/types/styleD/build/typescript/component/layout.d.ts +48 -0
  62. package/dist/types/styleD/build/typescript/semantic/breakpoints.d.ts +3 -24
  63. package/dist/types/styleD/utils/semantic/mq.d.ts +5 -14
  64. package/package.json +21 -2
@@ -0,0 +1,10 @@
1
+ 'use strict';
2
+
3
+ var Layout = require('./components/layout/Layout.cjs');
4
+ var layout = require('./styleD/build/typescript/component/layout.cjs');
5
+
6
+
7
+
8
+ exports.Layout = Layout.Layout;
9
+ exports.Sidebar = Layout.Sidebar;
10
+ exports.componentLayout = layout.componentLayout;
package/dist/layout.js ADDED
@@ -0,0 +1,2 @@
1
+ export { Layout, Sidebar } from './components/layout/Layout.js';
2
+ export { componentLayout } from './styleD/build/typescript/component/layout.js';
@@ -51,9 +51,9 @@
51
51
  --base-typography-letter-spacing-densest-px: -1px;
52
52
  --base-typography-letter-spacing-denser-px: -0.5px;
53
53
  --base-typography-letter-spacing-dense-px: -0.2px;
54
- --base-typography-letter-spacing-default-px: 0px;
54
+ --base-typography-letter-spacing-default-px: 0;
55
55
  --base-typography-letter-spacing-densest-rem: -0.0625rem;
56
56
  --base-typography-letter-spacing-denser-rem: -0.03125rem;
57
57
  --base-typography-letter-spacing-dense-rem: -0.0125rem;
58
- --base-typography-letter-spacing-default-rem: 0rem;
58
+ --base-typography-letter-spacing-default-rem: 0;
59
59
  }
@@ -82,7 +82,7 @@
82
82
  --component-top-bar-tool-name-gap: 8px;
83
83
  --component-top-bar-tool-name-typography-font: normal 700 1.25rem/1.15
84
84
  'GH Guardian Headline';
85
- --component-top-bar-tool-name-typography-letter-spacing: 0rem;
85
+ --component-top-bar-tool-name-typography-letter-spacing: 0;
86
86
  --component-top-bar-tool-name-typography-font-width: 100;
87
87
  --component-top-bar-tool-name-divider-border: 0.0625rem solid #cccccc;
88
88
  --component-top-bar-tool-name-divider-height: 2rem;
@@ -103,7 +103,7 @@
103
103
  --component-top-bar-tool-name-hover-link-opacity: 0;
104
104
  --component-top-bar-tool-name-hover-link-typography-font: normal 700
105
105
  0.875rem/1.3 'Open Sans';
106
- --component-top-bar-tool-name-hover-link-typography-letter-spacing: 0rem;
106
+ --component-top-bar-tool-name-hover-link-typography-letter-spacing: 0;
107
107
  --component-top-bar-tool-name-hover-link-typography-font-width: 95;
108
108
  --component-top-bar-tool-name-hover-link-position: absolute;
109
109
  --component-top-bar-tool-name-hover-link-width: 100%;
@@ -21,7 +21,7 @@
21
21
  --component-alert-banner-shared-content-color: #000000;
22
22
  --component-alert-banner-shared-content-typography-font: normal 460
23
23
  0.875rem/1.3 'Open Sans';
24
- --component-alert-banner-shared-content-typography-letter-spacing: 0rem;
24
+ --component-alert-banner-shared-content-typography-letter-spacing: 0;
25
25
  --component-alert-banner-shared-content-typography-font-width: 95;
26
26
  --component-alert-banner-shared-content-icon-color: #545454;
27
27
  --component-alert-banner-information-background-color: #e8f0fb;
@@ -14,7 +14,7 @@
14
14
  --component-autocomplete-listbox-border-style: solid;
15
15
  --component-autocomplete-listbox-border-color: #8d8d8d;
16
16
  --component-autocomplete-listbox-padding-y: 8px;
17
- --component-autocomplete-listbox-padding-x: 0px;
17
+ --component-autocomplete-listbox-padding-x: 0;
18
18
  --component-autocomplete-listbox-background-color: #ffffff;
19
19
  --component-autocomplete-listbox-item-padding-y: 8px;
20
20
  --component-autocomplete-listbox-item-padding-x: 12px;
@@ -76,7 +76,7 @@
76
76
  --component-avatar-shared-button-disabled-cursor: not-allowed;
77
77
  --component-avatar-sm-size: 2rem;
78
78
  --component-avatar-sm-typography-font: normal 700 0.75rem/1 'Open Sans';
79
- --component-avatar-sm-typography-letter-spacing: 0rem;
79
+ --component-avatar-sm-typography-letter-spacing: 0;
80
80
  --component-avatar-sm-typography-font-width: 95;
81
81
  --component-avatar-md-size: 2.5rem;
82
82
  --component-avatar-md-typography-font: normal 700 0.875rem/1 'Open Sans';
@@ -33,7 +33,7 @@
33
33
  --component-button-primary-xs-padding-with-icon-icon-left-left: 0.25rem;
34
34
  --component-button-primary-xs-typography-font: normal 700 0.75rem/1
35
35
  'Open Sans';
36
- --component-button-primary-xs-typography-letter-spacing: 0rem;
36
+ --component-button-primary-xs-typography-letter-spacing: 0;
37
37
  --component-button-primary-xs-typography-font-width: 95;
38
38
  --component-button-primary-xs-icon-size: 1.125rem;
39
39
  --component-button-primary-xs-icon-gap: 0.25rem;
@@ -95,7 +95,7 @@
95
95
  --component-button-secondary-xs-padding-with-icon-icon-left-left: 0.25rem;
96
96
  --component-button-secondary-xs-typography-font: normal 700 0.75rem/1
97
97
  'Open Sans';
98
- --component-button-secondary-xs-typography-letter-spacing: 0rem;
98
+ --component-button-secondary-xs-typography-letter-spacing: 0;
99
99
  --component-button-secondary-xs-typography-font-width: 95;
100
100
  --component-button-secondary-xs-icon-size: 1.125rem;
101
101
  --component-button-secondary-xs-icon-gap: 0.25rem;
@@ -157,7 +157,7 @@
157
157
  --component-button-tertiary-xs-padding-with-icon-icon-left-left: 0.25rem;
158
158
  --component-button-tertiary-xs-typography-font: normal 700 0.75rem/1
159
159
  'Open Sans';
160
- --component-button-tertiary-xs-typography-letter-spacing: 0rem;
160
+ --component-button-tertiary-xs-typography-letter-spacing: 0;
161
161
  --component-button-tertiary-xs-typography-font-width: 95;
162
162
  --component-button-tertiary-xs-icon-size: 1.125rem;
163
163
  --component-button-tertiary-xs-icon-gap: 0.25rem;
@@ -39,11 +39,11 @@
39
39
  --component-checkbox-input-shared-disabled-indicator-selected-background-color: #dcdcdc;
40
40
  --component-checkbox-input-sm-typography-font: normal 460 0.875rem/1.3
41
41
  'Open Sans';
42
- --component-checkbox-input-sm-typography-letter-spacing: 0rem;
42
+ --component-checkbox-input-sm-typography-letter-spacing: 0;
43
43
  --component-checkbox-input-sm-typography-font-width: 95;
44
44
  --component-checkbox-input-sm-indicator-size: 1.25rem;
45
45
  --component-checkbox-input-md-typography-font: normal 460 1rem/1.3 'Open Sans';
46
- --component-checkbox-input-md-typography-letter-spacing: 0rem;
46
+ --component-checkbox-input-md-typography-letter-spacing: 0;
47
47
  --component-checkbox-input-md-typography-font-width: 95;
48
48
  --component-checkbox-input-md-indicator-size: 1.5rem;
49
49
  --component-checkbox-group-shared-display: flex;
@@ -12,6 +12,6 @@
12
12
  --component-favicon-user-select: none;
13
13
  --component-favicon-typography-font: normal 700 1.25rem/1.15
14
14
  'GH Guardian Headline';
15
- --component-favicon-typography-letter-spacing: 0rem;
15
+ --component-favicon-typography-letter-spacing: 0;
16
16
  --component-favicon-typography-font-width: 100;
17
17
  }
@@ -12,7 +12,7 @@
12
12
  --component-form-input-shared-description-color: #545454;
13
13
  --component-form-input-shared-description-typography-font: normal 460
14
14
  0.875rem/1.3 'Open Sans';
15
- --component-form-input-shared-description-typography-letter-spacing: 0rem;
15
+ --component-form-input-shared-description-typography-letter-spacing: 0;
16
16
  --component-form-input-shared-description-typography-font-width: 95;
17
17
  --component-form-input-shared-description-disabled-color: #999999;
18
18
  --component-form-input-sm-label-typography-font: normal 700 0.875rem/1.15
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --component-grid-shared-display: flex;
7
+ --component-grid-shared-width: 100%;
8
+ --component-grid-shared-columns: 12;
9
+ --component-grid-shared-gap: 8px;
10
+ --component-grid-shared-direction: row;
11
+ --component-grid-shared-wrap: wrap;
12
+ --component-grid-shared-justify-content: flex-start;
13
+ --component-grid-shared-align-items: stretch;
14
+ }
@@ -10,7 +10,7 @@
10
10
  --component-inline-message-shared-icon-align-self: flex-start;
11
11
  --component-inline-message-shared-typography-font: normal 460 0.875rem/1.3
12
12
  'Open Sans';
13
- --component-inline-message-shared-typography-letter-spacing: 0rem;
13
+ --component-inline-message-shared-typography-letter-spacing: 0;
14
14
  --component-inline-message-shared-typography-font-width: 95;
15
15
  --component-inline-message-error-color: #8c2113;
16
16
  --component-inline-message-success-color: #326528;
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --component-layout-layout-shared-display: grid;
7
+ --component-layout-layout-shared-min-height: 100svh;
8
+ --component-layout-layout-shared-width: 100%;
9
+ --component-layout-layout-shared-max-width: 1584px;
10
+ --component-layout-layout-shared-margin-left: auto;
11
+ --component-layout-layout-shared-margin-right: auto;
12
+ --component-layout-layout-sm-grid-template-areas: 'alertbanner' 'topbar'
13
+ 'sidebar' 'main';
14
+ --component-layout-layout-sm-grid-template-columns: 1fr;
15
+ --component-layout-layout-sm-grid-template-rows: min-content min-content
16
+ min-content 1fr;
17
+ --component-layout-layout-md-grid-template-areas: 'alertbanner alertbanner'
18
+ 'topbar topbar' 'sidebar main';
19
+ --component-layout-layout-md-grid-template-columns: min-content 1fr;
20
+ --component-layout-layout-md-grid-template-rows: min-content min-content 1fr;
21
+ --component-layout-layout-lg-grid-template-areas: 'alertbanner alertbanner'
22
+ 'topbar topbar' 'sidebar main';
23
+ --component-layout-layout-lg-grid-template-columns: min-content 1fr;
24
+ --component-layout-layout-lg-grid-template-rows: min-content min-content 1fr;
25
+ --component-layout-sidebar-sm-hidden-display: none;
26
+ --component-layout-sidebar-sm-above-grid-display: block;
27
+ --component-layout-sidebar-md-display: block;
28
+ --component-layout-sidebar-md-width: 200px;
29
+ --component-layout-sidebar-lg-width: 320px;
30
+ }
@@ -3,7 +3,7 @@
3
3
  */
4
4
 
5
5
  :root {
6
- --component-link-shared-focus-outline: 1px solid #0072a9;
6
+ --component-link-shared-focus-outline: 0.0625rem solid #0072a9;
7
7
  --component-link-shared-hover-color: #00344e;
8
8
  --component-link-shared-hover-cursor: pointer;
9
9
  --component-link-shared-enabled-color: #00496c;
@@ -45,13 +45,13 @@
45
45
  --component-menu-menu-item-shared-label-color: #000000;
46
46
  --component-menu-menu-item-shared-label-typography-font: normal 460 1rem/1.3
47
47
  'Open Sans';
48
- --component-menu-menu-item-shared-label-typography-letter-spacing: 0rem;
48
+ --component-menu-menu-item-shared-label-typography-letter-spacing: 0;
49
49
  --component-menu-menu-item-shared-label-typography-font-width: 95;
50
50
  --component-menu-menu-item-shared-description-grid-area: description;
51
51
  --component-menu-menu-item-shared-description-color: #545454;
52
52
  --component-menu-menu-item-shared-description-typography-font: normal 460
53
53
  0.875rem/1.3 'Open Sans';
54
- --component-menu-menu-item-shared-description-typography-letter-spacing: 0rem;
54
+ --component-menu-menu-item-shared-description-typography-letter-spacing: 0;
55
55
  --component-menu-menu-item-shared-description-typography-font-width: 95;
56
56
  --component-menu-menu-item-shared-aside-grid-area: aside;
57
57
  --component-menu-menu-item-shared-aside-justify-self: end;
@@ -59,7 +59,7 @@
59
59
  --component-menu-menu-item-shared-aside-color: #000000;
60
60
  --component-menu-menu-item-shared-aside-typography-font: normal 460 1rem/1.3
61
61
  'Open Sans';
62
- --component-menu-menu-item-shared-aside-typography-letter-spacing: 0rem;
62
+ --component-menu-menu-item-shared-aside-typography-letter-spacing: 0;
63
63
  --component-menu-menu-item-shared-aside-typography-font-width: 95;
64
64
  --component-menu-menu-item-shared-last-child-border-bottom: none;
65
65
  --component-menu-menu-item-shared-hover-background-color: #f6f6f6;
@@ -15,7 +15,7 @@
15
15
  --component-radio-group-shared-indicator-position: relative;
16
16
  --component-radio-group-shared-indicator-after-position: absolute;
17
17
  --component-radio-group-shared-indicator-after-border-radius: inherit;
18
- --component-radio-group-shared-indicator-after-inset: 0px;
18
+ --component-radio-group-shared-indicator-after-inset: 0;
19
19
  --component-radio-group-shared-indicator-after-scale: 0;
20
20
  --component-radio-group-shared-indicator-border-radius: 50%;
21
21
  --component-radio-group-shared-indicator-border: 0.0625rem solid #545454;
@@ -39,13 +39,13 @@
39
39
  --component-radio-group-sm-gap: 1rem;
40
40
  --component-radio-group-sm-typography-font: normal 460 0.875rem/1.3
41
41
  'Open Sans';
42
- --component-radio-group-sm-typography-letter-spacing: 0rem;
42
+ --component-radio-group-sm-typography-letter-spacing: 0;
43
43
  --component-radio-group-sm-typography-font-width: 95;
44
44
  --component-radio-group-sm-indicator-width: 1.25rem;
45
45
  --component-radio-group-sm-indicator-height: 1.25rem;
46
46
  --component-radio-group-md-gap: 1.25rem;
47
47
  --component-radio-group-md-typography-font: normal 460 1rem/1.3 'Open Sans';
48
- --component-radio-group-md-typography-letter-spacing: 0rem;
48
+ --component-radio-group-md-typography-letter-spacing: 0;
49
49
  --component-radio-group-md-typography-font-width: 95;
50
50
  --component-radio-group-md-indicator-width: 1.5rem;
51
51
  --component-radio-group-md-indicator-height: 1.5rem;
@@ -20,7 +20,7 @@
20
20
  --component-select-shared-button-color: #545454;
21
21
  --component-select-shared-button-typography-font: normal 460 1rem/1.3
22
22
  'Open Sans';
23
- --component-select-shared-button-typography-letter-spacing: 0rem;
23
+ --component-select-shared-button-typography-letter-spacing: 0;
24
24
  --component-select-shared-button-typography-font-width: 95;
25
25
  --component-select-shared-button-focused-outline: 0.125rem solid #0072a9;
26
26
  --component-select-shared-button-focused-outline-offset: 0.125rem;
@@ -38,7 +38,7 @@
38
38
  --component-select-shared-option-focused-background-color: inherit;
39
39
  --component-select-shared-list-box-typography-font: normal 460 1rem/1.3
40
40
  'Open Sans';
41
- --component-select-shared-list-box-typography-letter-spacing: 0rem;
41
+ --component-select-shared-list-box-typography-letter-spacing: 0;
42
42
  --component-select-shared-list-box-typography-font-width: 95;
43
43
  --component-select-shared-list-box-border: 0.0625rem solid #cccccc;
44
44
  --component-select-shared-list-box-background-color: #ffffff;
@@ -25,7 +25,7 @@
25
25
  --component-tag-table-row-first-row-background-hover-color: #8ec183;
26
26
  --component-tag-table-add-button-color: #ffffff;
27
27
  --component-tag-table-add-button-padding-x: 10px;
28
- --component-tag-table-add-button-padding-y: 0px;
28
+ --component-tag-table-add-button-padding-y: 0;
29
29
  --component-tag-table-add-button-background-color: #8d8d8d;
30
30
  --component-tag-table-add-button-background-hover-color: #545454;
31
31
  --component-tag-table-add-button-font-weight: 400;
@@ -22,9 +22,9 @@
22
22
  --component-text-area-shared-focused-outline: 0.125rem auto #0072a9;
23
23
  --component-text-area-shared-error-border: 0.0625rem solid #b42a19;
24
24
  --component-text-area-sm-typography-font: normal 460 0.875rem/1.3 'Open Sans';
25
- --component-text-area-sm-typography-letter-spacing: 0rem;
25
+ --component-text-area-sm-typography-letter-spacing: 0;
26
26
  --component-text-area-sm-typography-font-width: 95;
27
27
  --component-text-area-md-typography-font: normal 460 1rem/1.3 'Open Sans';
28
- --component-text-area-md-typography-letter-spacing: 0rem;
28
+ --component-text-area-md-typography-letter-spacing: 0;
29
29
  --component-text-area-md-typography-font-width: 95;
30
30
  }
@@ -22,10 +22,10 @@
22
22
  --component-text-input-shared-error-border: 0.0625rem solid #b42a19;
23
23
  --component-text-input-sm-height: 2rem;
24
24
  --component-text-input-sm-typography-font: normal 460 0.875rem/1.3 'Open Sans';
25
- --component-text-input-sm-typography-letter-spacing: 0rem;
25
+ --component-text-input-sm-typography-letter-spacing: 0;
26
26
  --component-text-input-sm-typography-font-width: 95;
27
27
  --component-text-input-md-height: 2.5rem;
28
28
  --component-text-input-md-typography-font: normal 460 1rem/1.3 'Open Sans';
29
- --component-text-input-md-typography-letter-spacing: 0rem;
29
+ --component-text-input-md-typography-letter-spacing: 0;
30
30
  --component-text-input-md-typography-font-width: 95;
31
31
  }
@@ -9,17 +9,17 @@
9
9
  --component-user-menu-container-padding-x: 0.25rem;
10
10
  --component-user-menu-heading-font-weight: 700;
11
11
  --component-user-menu-heading-font-size: 1.125rem;
12
- --component-user-menu-heading-padding-top: 0px;
13
- --component-user-menu-heading-padding-right: 0px;
14
- --component-user-menu-heading-padding-bottom: 0px;
15
- --component-user-menu-heading-padding-left: 0px;
12
+ --component-user-menu-heading-padding-top: 0;
13
+ --component-user-menu-heading-padding-right: 0;
14
+ --component-user-menu-heading-padding-bottom: 0;
15
+ --component-user-menu-heading-padding-left: 0;
16
16
  --component-user-menu-heading-text-align: left;
17
17
  --component-user-menu-label-font-weight: 700;
18
18
  --component-user-menu-label-font-size: 0.875rem;
19
19
  --component-user-menu-label-padding-top: 15px;
20
- --component-user-menu-label-padding-right: 0px;
20
+ --component-user-menu-label-padding-right: 0;
21
21
  --component-user-menu-label-padding-bottom: 0.375rem;
22
- --component-user-menu-label-padding-left: 0px;
22
+ --component-user-menu-label-padding-left: 0;
23
23
  --component-user-menu-label-text-align: left;
24
24
  --component-user-menu-toggle-button-base-background-color: #ededed;
25
25
  --component-user-menu-toggle-button-disabled-background-color: #dcdcdc;
@@ -3,16 +3,7 @@
3
3
  */
4
4
 
5
5
  :root {
6
- --semantic-breakpoints-sm-min: 0;
7
- --semantic-breakpoints-sm-max: 671px;
8
- --semantic-breakpoints-md-min: 672px;
9
- --semantic-breakpoints-md-max: 1055px;
10
- --semantic-breakpoints-lg-min: 1056px;
11
- --semantic-breakpoints-lg-max: 1311px;
12
- --semantic-breakpoints-xl-min: 1312px;
13
- --semantic-breakpoints-xl-max: 1583px;
14
- --semantic-breakpoints-max-min: 1584px;
15
- --semantic-breakpoints-max-max: 1783px;
16
- --semantic-breakpoints-maxplus-min: 1784px;
17
- --semantic-breakpoints-maxplus-max: initial;
6
+ --semantic-breakpoints-sm: 0;
7
+ --semantic-breakpoints-md: 830px;
8
+ --semantic-breakpoints-lg: 1056px;
18
9
  }