matcha-theme 1.0.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.
Files changed (56) hide show
  1. package/abstracts/_breakpoints.scss +33 -0
  2. package/abstracts/_colors.scss +422 -0
  3. package/abstracts/_elevation.scss +102 -0
  4. package/abstracts/_functions.scss +321 -0
  5. package/abstracts/_grid.scss +130 -0
  6. package/abstracts/_order.scss +46 -0
  7. package/abstracts/_position.scss +51 -0
  8. package/abstracts/_sizes.scss +74 -0
  9. package/abstracts/_spacings.scss +236 -0
  10. package/abstracts/_typography.scss +137 -0
  11. package/base/_helpers.scss +3019 -0
  12. package/base/_reset.scss +9 -0
  13. package/base/_typography.scss +242 -0
  14. package/components/matcha-audio-player.scss +37 -0
  15. package/components/matcha-buttons.scss +91 -0
  16. package/components/matcha-cards.scss +93 -0
  17. package/components/matcha-color-pick.scss +32 -0
  18. package/components/matcha-draggable.scss +25 -0
  19. package/components/matcha-header.scss +326 -0
  20. package/components/matcha-horizontal-tree.scss +275 -0
  21. package/components/matcha-icons.scss +11 -0
  22. package/components/matcha-progress-bar.scss +107 -0
  23. package/components/matcha-scrollbar.scss +36 -0
  24. package/components/matcha-scrollbox-shadow.scss +127 -0
  25. package/components/matcha-table.scss +259 -0
  26. package/fonts/CircularStd-Bold.eot +0 -0
  27. package/fonts/CircularStd-Bold.otf +0 -0
  28. package/fonts/CircularStd-Bold.svg +13532 -0
  29. package/fonts/CircularStd-Bold.ttf +0 -0
  30. package/fonts/CircularStd-Bold.woff +0 -0
  31. package/fonts/CircularStd-Bold.woff2 +0 -0
  32. package/fonts/CircularStd-Medium.eot +0 -0
  33. package/fonts/CircularStd-Medium.otf +0 -0
  34. package/fonts/CircularStd-Medium.svg +13511 -0
  35. package/fonts/CircularStd-Medium.ttf +0 -0
  36. package/fonts/CircularStd-Medium.woff +0 -0
  37. package/fonts/CircularStd-Medium.woff2 +0 -0
  38. package/fonts/CircularStd-Regular.eot +0 -0
  39. package/fonts/CircularStd-Regular.otf +0 -0
  40. package/fonts/CircularStd-Regular.svg +5562 -0
  41. package/fonts/CircularStd-Regular.ttf +0 -0
  42. package/fonts/CircularStd-Regular.woff +0 -0
  43. package/main.scss +87 -0
  44. package/package.json +11 -0
  45. package/tokens/_animations.scss +37 -0
  46. package/tokens/_breakpoints.scss +46 -0
  47. package/tokens/_color-tokens.scss +1419 -0
  48. package/tokens/_elevation-tokens.scss +14 -0
  49. package/tokens/_spacing-tokens.scss +96 -0
  50. package/tokens/_typography-tokens.scss +25 -0
  51. package/vendors/angular-editor.scss +56 -0
  52. package/vendors/angular-material-fixes.scss +21 -0
  53. package/vendors/calendar.scss +2876 -0
  54. package/vendors/charts.scss +92 -0
  55. package/vendors/ng5-slider.scss +56 -0
  56. package/vendors/ngx-material-timepicker.scss +50 -0
@@ -0,0 +1,326 @@
1
+ /*
2
+ How to use
3
+ @import '~matcha-ds/assets/scss/components/matcha-header.scss';
4
+ @include matcha-headers-theme($theme);
5
+ */
6
+ // -----------------------------------------------------------------------------------------------------
7
+ // Headers [Theme]
8
+ // -----------------------------------------------------------------------------------------------------
9
+ @mixin matcha-header-theme($theme) {
10
+ $accent: map-get($theme, accent);
11
+ $warn: map-get($theme, warn);
12
+ $primary: map-get($theme, primary);
13
+ $background: map-get($theme, background);
14
+ $foreground: map-get($theme, foreground);
15
+
16
+ .matcha-header {
17
+
18
+ // matcha-header__content
19
+ &__content {
20
+
21
+ // matcha-header__content__title
22
+ &__title {
23
+
24
+ // matcha-header__content__title__icon
25
+ &__icon {
26
+ color: map-get($foreground, label);
27
+ }
28
+ }
29
+
30
+ &__options {
31
+ background: map-get($background, card);
32
+ @include elevation(1);
33
+ }
34
+ }
35
+ }
36
+
37
+ @media (min-width: 1024px) {
38
+ .matcha-header {
39
+
40
+ // matcha-header__content
41
+ &__content {
42
+ background: map-get($background, card);
43
+ @include elevation(1);
44
+
45
+ // matcha-header__content__title
46
+ &__title {
47
+
48
+ // matcha-header__content__title__icon
49
+ &__icon {
50
+ color: map-get($foreground, label);
51
+ }
52
+ }
53
+
54
+ &__options {
55
+ background: transparent;
56
+ @include elevation(0);
57
+ }
58
+ }
59
+ }
60
+
61
+ }
62
+
63
+ // X-Large devices (big desktops, 1440px and up < 1920)
64
+ @media (min-width: 1440px) {}
65
+
66
+ // XX-Large devices (larger desktops, 1920px and up)
67
+ @media (min-width: 1920px) {}
68
+ }
69
+
70
+ // -----------------------------------------------------------------------------------------------------
71
+ // Headers [Style]
72
+ // -----------------------------------------------------------------------------------------------------
73
+ .matcha-header {
74
+
75
+ // matcha-header__content
76
+ &__content {
77
+ // align-content: center;
78
+ display: flex;
79
+ flex-wrap: wrap;
80
+ align-items: center;
81
+ flex-direction: row;
82
+ justify-content: space-between;
83
+ width: 100%;
84
+ height: auto;
85
+
86
+ >div:nth-child(n + 2) {
87
+ margin-top: 8px;
88
+ }
89
+
90
+
91
+ // matcha-header__content--few-options
92
+ &--few-options {
93
+ .matcha-header__content__options__buttons {
94
+ display: flex;
95
+ }
96
+ }
97
+
98
+ // matcha-header__content--full-options
99
+ &--full-options {
100
+ .matcha-header__content__options__buttons {
101
+ display: flex;
102
+ }
103
+
104
+ .main-btn-new {
105
+ display: none;
106
+ }
107
+
108
+ .float-btn-new {
109
+ display: inline-block;
110
+ }
111
+ }
112
+
113
+ // matcha-header__content__title
114
+ &__title {
115
+ font-size: 20px;
116
+ font-family: "CircularStd-Bold", "Helvetica Neue", "Arial", sans-serif;
117
+ margin: 0 16px 0 0;
118
+ line-height: 48px;
119
+ min-height: 48px;
120
+ white-space: nowrap;
121
+ overflow: hidden;
122
+ text-overflow: ellipsis;
123
+ display: flex;
124
+ align-items: center;
125
+
126
+ // matcha-header__content__title__icon
127
+ &__icon {
128
+ font-size: 32px;
129
+ line-height: 32px;
130
+ width: 32px;
131
+ height: 32px;
132
+ margin: 0px 16px 0 0px;
133
+ }
134
+
135
+ // matcha-header__content__title__label
136
+ &__label {
137
+ line-height: 24px;
138
+ display: -webkit-box;
139
+ -webkit-line-clamp: 2;
140
+ overflow: hidden;
141
+ text-overflow: ellipsis;
142
+ word-break: break-word;
143
+ white-space: initial;
144
+
145
+ -webkit-box-orient: vertical;
146
+
147
+ text-transform: capitalize;
148
+ }
149
+
150
+ }
151
+
152
+ // matcha-header__content__options
153
+ &__options {
154
+ display: flex;
155
+ margin: 0;
156
+ flex-direction: column-reverse;
157
+ justify-content: flex-end;
158
+ width: 100%;
159
+ padding: 16px;
160
+ border-radius: 8px;
161
+
162
+ >div:nth-child(n + 2) {
163
+ margin-bottom: 8px;
164
+ }
165
+
166
+ // matcha-header__content__options__form
167
+ &__form {
168
+ display: flex;
169
+ width: 100%;
170
+ height: 48px;
171
+ margin-top: 0px;
172
+
173
+ form {
174
+ display: flex;
175
+ width: 100%;
176
+ height: 48px;
177
+ margin-top: 0px !important;
178
+
179
+ // Deprecated warning
180
+ // All angular material classes shuld become agnostics
181
+ .mat-form-field {
182
+ width: 100%;
183
+ margin: 0 0 0 0 !important;
184
+
185
+ .mat-form-field-wrapper {
186
+ margin: 0
187
+ }
188
+
189
+ .mat-form-field-outline-end {
190
+ border-radius: 0 0 0 0 !important;
191
+ }
192
+ }
193
+ }
194
+
195
+ .btn-search-filter {
196
+ margin: 0 0 0 -2px !important;
197
+ border-radius: 0 8px 8px 0 !important;
198
+ }
199
+ }
200
+
201
+ // matcha-header__content__options__field
202
+ &__field {
203
+ display: flex;
204
+ width: 100%;
205
+ height: 48px;
206
+ margin-top: 0px;
207
+
208
+ form {
209
+ display: flex;
210
+ width: 100%;
211
+ height: 48px;
212
+ margin-top: 0px !important;
213
+ }
214
+
215
+ // Deprecated warning
216
+ // All angular material classes shuld become agnostics
217
+ .mat-form-field {
218
+ width: 100%;
219
+ margin: 0 0 0 0 !important;
220
+
221
+ .mat-form-field-wrapper {
222
+ margin: 0
223
+ }
224
+ }
225
+
226
+ }
227
+
228
+ // matcha-header__content__options__buttons
229
+ &__buttons {
230
+
231
+ button {
232
+ &:nth-child(n):not(.float-btn-new):not(.btn-search-filter) {
233
+ margin: 0 8px 0 0;
234
+ }
235
+
236
+ &:first-child {
237
+ margin: 0 8px 0 0;
238
+ }
239
+ }
240
+ }
241
+ }
242
+
243
+ .float-btn-new {
244
+ position: fixed;
245
+ z-index: 9999;
246
+ top: calc(100vh - 72px);
247
+ left: calc(100vw - 72px);
248
+ }
249
+ }
250
+ }
251
+
252
+ // Medium devices (landscapes and tablets, 600px and up < 1024px )
253
+ @media (min-width: 600px) {}
254
+
255
+ // Large devices (tablets and small monitors, 1024px and up < 1440px)
256
+ @media (min-width: 1024px) {
257
+ .matcha-header {
258
+ &__content {
259
+ padding: 16px;
260
+ border-radius: 8px;
261
+ flex-wrap: nowrap;
262
+
263
+ >div:nth-child(n + 2) {
264
+ margin-top: 0px;
265
+ }
266
+
267
+ &--few-options {
268
+ .matcha-header__content__options__buttons {
269
+ display: flex;
270
+ }
271
+ }
272
+
273
+ &--full-options {
274
+ .matcha-header__content__options__buttons {
275
+ display: flex;
276
+ }
277
+
278
+ .main-btn-new {
279
+ display: inline-block;
280
+ }
281
+
282
+ .float-btn-new {
283
+ display: none;
284
+ }
285
+ }
286
+
287
+ &__options {
288
+ flex-direction: row;
289
+ max-width: fit-content;
290
+ padding: 0px;
291
+ border-radius: 0px;
292
+
293
+ >div:nth-child(n + 2) {
294
+ margin-bottom: 0px;
295
+ }
296
+
297
+ &__form,
298
+ &__field {
299
+ min-width: 272px;
300
+ }
301
+
302
+ &__buttons {
303
+ margin-bottom: 0px;
304
+ display: flex;
305
+
306
+ button {
307
+ &:nth-child(n):not(.float-btn-new):not(.btn-search-filter) {
308
+ margin: 0 0 0 16px;
309
+ }
310
+
311
+ &:first-child {
312
+ margin: 0;
313
+ }
314
+ }
315
+
316
+ }
317
+ }
318
+ }
319
+ }
320
+ }
321
+
322
+ // X-Large devices (big desktops, 1440px and up < 1920)
323
+ @media (min-width: 1440px) {}
324
+
325
+ // XX-Large devices (larger desktops, 1920px and up)
326
+ @media (min-width: 1920px) {}
@@ -0,0 +1,275 @@
1
+ @mixin matcha-horizontal-tree($theme) {
2
+ $primary: map-get($theme, primary);
3
+ $accent: map-get($theme, accent);
4
+ $warn: map-get($theme, warn);
5
+ $background: map-get($theme, background);
6
+ $foreground: map-get($theme, foreground);
7
+
8
+ .svg-line {
9
+ position: absolute;
10
+ top: 0;
11
+ left: 0;
12
+ width: 100%;
13
+ height: 100%;
14
+ z-index: -1;
15
+
16
+ line {
17
+ stroke-width: 4px;
18
+ stroke: map-get($foreground, placeholder);
19
+ }
20
+ }
21
+
22
+ .child {
23
+ display: flex;
24
+ position: relative;
25
+
26
+ .the-line-connect-first,
27
+ .the-line-connect,
28
+ .the-line-connect-last,
29
+ .the-line-connect-first-modal,
30
+ .the-line-connect-second-modal,
31
+ .the-line-connect-last-modal {}
32
+
33
+ .the-line-connect-first {
34
+ width: 56px;
35
+ height: 4px;
36
+ margin: 56px -16px 56px -40px;
37
+ display: flex;
38
+ position: absolute;
39
+ z-index: -1;
40
+ background: transparent;
41
+ box-shadow: inset 2px -2px 0px 2px map-get($foreground, placeholder);
42
+ }
43
+
44
+ .the-line-connect {
45
+ width: 56px;
46
+ margin: -90px -16px 56px -40px;
47
+ height: 150px;
48
+ display: flex;
49
+ position: absolute;
50
+ z-index: -1;
51
+ background: transparent;
52
+ border-radius: 0 0 0 40px;
53
+ box-shadow: inset 2px -2px 0px 2px map-get($foreground, placeholder);
54
+ }
55
+
56
+ .the-line-connect-last {
57
+ width: 56px;
58
+ height: 136px;
59
+ margin: -80px -16px 56px -40px;
60
+ display: flex;
61
+ position: absolute;
62
+ z-index: -1;
63
+ border-radius: 0 0 0 40px;
64
+ background: transparent;
65
+ box-shadow: inset 2px -2px 0px 2px map-get($foreground, placeholder);
66
+ }
67
+
68
+ .the-line-connect-first-modal {
69
+ width: 56px;
70
+ height: 4px;
71
+ margin: 56px -16px 56px -40px;
72
+ display: flex;
73
+ position: absolute;
74
+ z-index: -1;
75
+ background: transparent;
76
+ box-shadow: inset 2px -2px 0px 2px map-get($background, lime-alpha);
77
+ }
78
+
79
+ .the-line-connect-second-modal {
80
+ width: 56px;
81
+ border-radius: 0 0 0 40px;
82
+ z-index: 1;
83
+ margin: -16px -16px 56px -40px;
84
+ height: 72px;
85
+ display: flex;
86
+ position: absolute;
87
+ background: transparent;
88
+ box-shadow: inset 2px -2px 0px 2px map-get($background, lime-alpha);
89
+ }
90
+
91
+ .the-line-connect-last-modal {
92
+ width: 56px;
93
+ height: 150px;
94
+ margin: -90px -16px 56px -40px;
95
+ display: flex;
96
+ position: absolute;
97
+ border-radius: 0 0 0 40px;
98
+ z-index: 1;
99
+ background: transparent;
100
+ box-shadow: inset 2px -2px 0px 2px map-get($background, lime-alpha);
101
+ }
102
+
103
+ .the-line-connect-start-modal {
104
+ height: 92px;
105
+ margin: -34px -16px 56px -40px;
106
+ width: 56px;
107
+ border-radius: 0 0 0 40px;
108
+ z-index: 1;
109
+ display: flex;
110
+ position: absolute;
111
+ background: transparent;
112
+ box-shadow: inset 2px -2px 0px 2px map-get($background, lime-alpha);
113
+ }
114
+
115
+ .the-line-connect {
116
+ height: 92px !important;
117
+ margin: -34px -16px 56px -40px !important;
118
+ }
119
+
120
+ .the-line-connect-middle {
121
+ height: 92px;
122
+ margin: -34px -16px 56px -40px;
123
+ width: 56px;
124
+ border-radius: 0 0 0 40px;
125
+ z-index: 0;
126
+ display: flex;
127
+ position: absolute;
128
+ background: transparent;
129
+ box-shadow: inset 2px -2px 0px 2px #223744;
130
+ }
131
+ }
132
+
133
+ .tree-node {
134
+ min-width: 264px;
135
+ max-width: 264px;
136
+ width: 264px;
137
+ height: 80px;
138
+
139
+ &-header {
140
+ display: flex;
141
+ justify-content: space-between;
142
+ margin-bottom: 4px;
143
+
144
+ &-title {
145
+ font-size: 12px;
146
+ line-height: 12px;
147
+ display: flex;
148
+ margin: 0 0 4px 0;
149
+ align-items: center;
150
+ letter-spacing: 0.08em;
151
+ text-transform: uppercase;
152
+ font-family: "CircularStd-Bold";
153
+
154
+ &-bullet {
155
+ height: 16px;
156
+ width: 8px;
157
+ margin: 0px 8px 0 0;
158
+ display: inline-block;
159
+ position: relative;
160
+ border-radius: 10px;
161
+ }
162
+ }
163
+ }
164
+
165
+ &-content {
166
+ display: flex;
167
+ justify-content: space-between;
168
+
169
+ &-profile {
170
+ display: flex;
171
+ align-items: center;
172
+ width: 100%;
173
+
174
+ &-avatar {
175
+ border-radius: 50px;
176
+ min-width: 24px;
177
+ min-height: 24px;
178
+ width: 24px;
179
+ height: 24px;
180
+ max-width: 24px;
181
+ max-height: 24px;
182
+ }
183
+
184
+ &-name {
185
+ width: calc(100% - 48px);
186
+ display: flex;
187
+ line-height: 20px;
188
+ font-size: 16px;
189
+ margin: 0 0 0 8px;
190
+ -webkit-line-clamp: 2;
191
+ overflow: hidden;
192
+ text-overflow: ellipsis;
193
+ word-break: break-word;
194
+ white-space: nowrap;
195
+ -webkit-box-orient: vertical;
196
+ }
197
+ }
198
+
199
+ &-btn-add-node {
200
+ position: absolute;
201
+ margin: 24px 0px 0 236px;
202
+ width: 24px;
203
+ height: 24px;
204
+ background: map-get($background, card);
205
+ box-shadow: inset 0px 0px 0px 3px map-get($accent, default);
206
+
207
+ &-i {
208
+ line-height: 12px;
209
+ color: map-get($accent, default);
210
+ border-radius: 50px;
211
+ }
212
+ }
213
+ }
214
+ }
215
+
216
+ .tree-first-node {
217
+ display: flex;
218
+ justify-content: center;
219
+ align-items: center;
220
+ min-width: 264px;
221
+ max-width: 264px;
222
+ width: 264px;
223
+ height: 80px;
224
+ margin: 16px 16px -10px 16px;
225
+ border-radius: 8px;
226
+
227
+ &-begin {
228
+ font-size: 16px;
229
+ font-family: "CircularStd-Bold";
230
+ line-height: 16px;
231
+ display: -webkit-box;
232
+ -webkit-line-clamp: 2;
233
+ overflow: hidden;
234
+ text-overflow: ellipsis;
235
+ word-break: break-word;
236
+ white-space: initial;
237
+ -webkit-box-orient: vertical;
238
+ text-transform: capitalize;
239
+ text-overflow: ellipsis;
240
+
241
+ &-btn-add-node {
242
+ width: 24px;
243
+ height: 24px;
244
+ display: block;
245
+ margin: 0 auto;
246
+ position: relative;
247
+ background: map-get($background, card);
248
+ box-shadow: inset 0px 0px 0px 3px map-get($accent, default);
249
+
250
+ &-i {
251
+ line-height: 12px;
252
+ color: map-get($accent, default);
253
+ border-radius: 50px;
254
+ }
255
+ }
256
+ }
257
+ }
258
+
259
+ .matcha-horizontal-tree {
260
+ overflow: auto;
261
+ // cursor: grab;
262
+ -webkit-touch-callout: none;
263
+ /* iOS Safari */
264
+ -webkit-user-select: none;
265
+ /* Safari */
266
+ -khtml-user-select: none;
267
+ /* Konqueror HTML */
268
+ -moz-user-select: none;
269
+ /* Old versions of Firefox */
270
+ -ms-user-select: none;
271
+ /* Internet Explorer/Edge */
272
+ user-select: none;
273
+ /* Non-prefixed version, currently */
274
+ }
275
+ }
@@ -0,0 +1,11 @@
1
+ @font-face {
2
+ font-family : 'MatchaIcons';
3
+ src: url('~matcha-icons/fonts/matcha-icons.eot');
4
+ src: url('~matcha-icons/fonts/matcha-icons.eot?#iefix') format('embedded-opentype'),
5
+ url('~matcha-icons/fonts/matcha-icons.ttf') format('truetype'),
6
+ url('~matcha-icons/fonts/matcha-icons.woff') format('woff'),
7
+ url('~matcha-icons/fonts/matcha-icons.svg') format('svg');
8
+ font-weight : normal;
9
+ font-style : normal;
10
+ font-display : block;
11
+ }
@@ -0,0 +1,107 @@
1
+ /*
2
+ How to use
3
+ @import '~matcha-ds/assets/scss/components/matcha-header.scss';
4
+ @include matcha-progress-bar-theme($theme);
5
+ */
6
+ // -----------------------------------------------------------------------------------------------------
7
+ // Progress-bar [Theme]
8
+ // -----------------------------------------------------------------------------------------------------
9
+ @mixin matcha-progress-bar-theme($theme) {
10
+ $accent: map-get($theme, accent);
11
+ $warn: map-get($theme, warn);
12
+ $primary: map-get($theme, primary);
13
+ $background: map-get($theme, background);
14
+ $foreground: map-get($theme, foreground);
15
+
16
+ .matcha-progress-bar {
17
+
18
+ // matcha-progress-bar__field
19
+ &__field {
20
+ background: map-get($background, disabled);
21
+ transition: all 300ms linear;
22
+ }
23
+
24
+ // matcha-progress-bar__progress
25
+ &__progress {
26
+ transition: all 300ms ease-out;
27
+
28
+ &::before {
29
+ content: '';
30
+ border-radius: 8px;
31
+ background-size: 50px 50px;
32
+ background-image: linear-gradient(-45deg,
33
+ rgba(0, 0, 0, 0) 25%,
34
+ transparent 25%,
35
+ transparent 50%,
36
+ rgba(0, 0, 0, 0) 50%,
37
+ rgba(0, 0, 0, 0) 75%,
38
+ transparent 75%,
39
+ transparent);
40
+ animation: progress-bar-animation 2s linear infinite;
41
+ width: 100%;
42
+ display: flex;
43
+ transition: all 300ms linear;
44
+
45
+ }
46
+ }
47
+
48
+ @keyframes progress-bar-animation {
49
+ 0% {
50
+ background-position: 50px 50px;
51
+ }
52
+
53
+ 100% {
54
+ background-position: 0px 0px;
55
+ }
56
+ }
57
+
58
+ // matcha-progress-bar__progress
59
+ &__label {
60
+ color: map-get($foreground, text-inverse);
61
+ }
62
+ }
63
+ }
64
+
65
+ // -----------------------------------------------------------------------------------------------------
66
+ // Progress-bar [Style]
67
+ // -----------------------------------------------------------------------------------------------------
68
+ .matcha-progress-bar {
69
+ width: 100%;
70
+ display: flex;
71
+
72
+ // matcha-progress-bar__field
73
+ &__field {
74
+ border-radius: 8px;
75
+ display: flex;
76
+ width: 100%;
77
+ }
78
+
79
+ // matcha-progress-bar__progress
80
+ &__progress {
81
+ line-height: 12px;
82
+ font-size: 12px;
83
+ height: 16px;
84
+ border-radius: 8px;
85
+ display: flex;
86
+ }
87
+
88
+ // matcha-progress-bar__progress
89
+ &__label {
90
+ line-height: 16px;
91
+ padding-left: 8px;
92
+ display: flex;
93
+ position: relative;
94
+ }
95
+ }
96
+
97
+ // Medium devices (landscapes and tablets, 600px and up < 1024px )
98
+ @media (min-width: 600px) {}
99
+
100
+ // Large devices (tablets and small monitors, 1024px and up < 1440px)
101
+ @media (min-width: 1024px) {}
102
+
103
+ // X-Large devices (big desktops, 1440px and up < 1920)
104
+ @media (min-width: 1440px) {}
105
+
106
+ // XX-Large devices (larger desktops, 1920px and up)
107
+ @media (min-width: 1920px) {}