ably-ui 8.7.0.dev.779bcfa → 8.7.0.dev.827e917

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/lib/ably_ui/core/code/component.css +0 -2
  4. data/lib/ably_ui/core/company_autocomplete/component.js +2 -1
  5. data/lib/ably_ui/core/core.rb +8 -4
  6. data/lib/ably_ui/core/featured_link/component.css +1 -1
  7. data/lib/ably_ui/core/footer/component.css +2 -2
  8. data/lib/ably_ui/core/footer/footer.html.erb +19 -24
  9. data/lib/ably_ui/core/images/best-support-2023.svg +1 -0
  10. data/lib/ably_ui/core/images/fastest-implementation-2023.svg +1 -0
  11. data/lib/ably_ui/core/images/high-performer-2023.svg +1 -0
  12. data/lib/ably_ui/core/images/highest-user-adoption-2023.svg +1 -0
  13. data/lib/ably_ui/core/meganav/component.css +7 -7
  14. data/lib/ably_ui/core/meganav/component.json +1 -1
  15. data/lib/ably_ui/core/meganav/meganav.rb +4 -4
  16. data/lib/ably_ui/core/meganav_blog_posts_list/component.js +2 -1
  17. data/lib/ably_ui/core/meganav_content_developers/meganav_content_developers.html.erb +11 -2
  18. data/lib/ably_ui/core/{meganav_content_platform → meganav_content_products}/component.js +1 -1
  19. data/lib/ably_ui/core/{meganav_content_platform/meganav_content_platform.html.erb → meganav_content_products/meganav_content_products.html.erb} +15 -33
  20. data/lib/ably_ui/core/{meganav_content_platform/meganav_content_platform.rb → meganav_content_products/meganav_content_products.rb} +1 -1
  21. data/lib/ably_ui/core/meganav_content_use_cases/meganav_content_use_cases.html.erb +4 -4
  22. data/lib/ably_ui/core/meganav_items_desktop/meganav_items_desktop.rb +1 -1
  23. data/lib/ably_ui/core/notice/component.css +1 -1
  24. data/lib/ably_ui/core/notice/notice.html.erb +2 -2
  25. data/lib/ably_ui/core/scripts.js +2 -1
  26. data/lib/ably_ui/core/sprites.svg +29 -0
  27. data/lib/ably_ui/core/styles.css +88 -122
  28. data/lib/ably_ui/version.rb +1 -1
  29. metadata +9 -7
  30. data/lib/ably_ui/core/fonts/jetBrains-mono.css +0 -3
  31. data/lib/ably_ui/core/fonts/manrope.css +0 -3
@@ -4,24 +4,20 @@
4
4
  --color-active-orange: #ff5416;
5
5
  --color-red-orange: #e40000;
6
6
  --color-white: #ffffff;
7
- --color-electric-cyan: #4ad4ff;
7
+ --color-electric-cyan: #4af7ff;
8
8
  --color-zingy-green: #08ff13;
9
- --color-bright-red: #fe372b;
10
- --color-orange-700: #ff2739;
9
+ --color-bright-red: #ff2739;
11
10
  --color-jazzy-pink: #ff17d2;
12
- --color-extra-light-grey: #f8fafc;
13
- --color-light-grey: #f4f8fb;
14
- --color-mid-grey: #c6ced9;
15
- --color-dark-grey: #667085;
16
- --color-charcoal-grey: #2b303b;
17
- --color-gui-default: #006edc;
18
- --color-gui-hover: #0862b9;
19
- --color-gui-active: #074095;
20
- --color-gui-default-dark: #4da6ff;
21
- --color-gui-hover-dark: #2894ff;
22
- --color-gui-active-dark: #0080ff;
23
- --color-gui-focus: #80b9f2;
11
+ --color-extra-light-grey: #fafafb;
12
+ --color-light-grey: #f5f5f6;
13
+ --color-mid-grey: #d9d9da;
14
+ --color-dark-grey: #76767c;
15
+ --color-charcoal-grey: #292831;
16
+ --color-gui-default: #0073e6;
17
+ --color-gui-hover: #0867c4;
18
+ --color-gui-focus: #0073e6;
24
19
  --color-gui-focus-outline: #80b9f2;
20
+ --color-gui-active: #074095;
25
21
  --color-gui-visited: #4887c2;
26
22
  --color-gui-unavailable: #a8a8a8;
27
23
  --color-gui-error: #fb0c0c;
@@ -40,10 +36,6 @@
40
36
  --syntax-red: #d54e53;
41
37
  --syntax-lilac: #bb87d3;
42
38
 
43
- /* New Neutral colors */
44
- --color-neutral-900: #39414e;
45
- --color-neutral-500: #c6ced9;
46
-
47
39
  /* uptime status colors */
48
40
  --uptime-color-up: #39b54a;
49
41
  --uptime-color-trouble: #e87623;
@@ -78,43 +70,38 @@
78
70
 
79
71
  --gradient-hot-pink: linear-gradient(
80
72
  80.2deg,
81
- var(--color-orange-700) 0%,
73
+ var(--color-bright-red) 0%,
82
74
  var(--color-jazzy-pink) 100%
83
75
  );
84
76
 
85
- --fs-title-xl: 3rem;
86
- --fs-title: 2.75rem;
87
- --fs-title-xs: 2.5rem;
88
- --fs-h1-xl: 2.5rem;
89
- --fs-h1: 2.25rem;
90
- --fs-h1-xs: 2rem;
91
-
92
- --fs-h2-xl: 2.125rem;
77
+ --fs-title-xl: 4rem;
78
+ --fs-title: 3.5rem;
79
+ --fs-title-xs: 3rem;
80
+ --fs-h1-xl: 3.5rem;
81
+ --fs-h1: 3rem;
82
+ --fs-h1-xs: 2.625rem;
83
+ --fs-h2-xl: 2.5rem;
93
84
  --fs-h2: 2rem;
94
- --fs-h2-xs: 1.75rem;
95
-
85
+ --fs-h2-xs: 1.875rem;
96
86
  --fs-h3: 1.5rem;
97
- --fs-h4: 1.25rem;
98
- --fs-h5: 1rem;
99
-
100
- --fs-p1: 1rem;
101
- --fs-p2: 0.938rem;
87
+ --fs-h4: 1.125rem;
88
+ --fs-p1: 1.125rem;
89
+ --fs-p2: 1rem;
102
90
  --fs-p3: 0.875rem;
103
91
  --fs-standfirst-xl: 2.25rem;
104
92
  --fs-standfirst: 1.5rem;
105
- --fs-sub-header: 1.125rem;
106
- --fs-sub-header-xs: 1.063rem;
93
+ --fs-sub-header: 1.5rem;
94
+ --fs-sub-header-xs: 1.125rem;
107
95
  --fs-overline1: 1rem;
108
96
  --fs-overline2: 0.875rem;
109
- --fs-btn1: 1rem;
110
- --fs-btn2: 0.938rem;
97
+ --fs-btn1: 1.125rem;
98
+ --fs-btn2: 1rem;
111
99
  --fs-btn3: 0.875rem;
112
- --fs-menu1: 1rem;
113
- --fs-menu2: 0.938rem;
100
+ --fs-menu1: 1.125rem;
101
+ --fs-menu2: 1rem;
114
102
  --fs-menu3: 0.875rem;
115
- --fs-quote: 1.25rem;
116
- --fs-code: 0.938rem;
117
- --fs-code2: 0.813rem;
103
+ --fs-quote: 1.5rem;
104
+ --fs-code: 0.875rem;
118
105
 
119
106
  --lh-dense: 1;
120
107
  --lh-tight: 1.125;
@@ -128,9 +115,7 @@
128
115
  --ls-tighten-0_01: -0.01em;
129
116
  --ls-tighten-0_005: -0.005em;
130
117
  --ls-tighten-0_0025: -0.0025em;
131
- --ls-tighten-0_0015: -0.0015em;
132
118
  --ls-widen-0_1: 0.1em;
133
- --ls-widen-0_16: 0.16em;
134
119
  --ls-widen-0_15: 0.15em;
135
120
 
136
121
  --spacing-0: 0px;
@@ -145,7 +130,6 @@
145
130
  --spacing-20: 1.25rem;
146
131
  --spacing-24: 1.5rem;
147
132
  --spacing-32: 2rem;
148
- --spacing-36: 2.25rem;
149
133
  --spacing-40: 2.5rem;
150
134
  --spacing-48: 3rem;
151
135
  --spacing-64: 4rem;
@@ -193,7 +177,7 @@
193
177
  }
194
178
  @layer components {
195
179
  .ui-btn {
196
- @apply text-white bg-cool-black text-btn2 font-manrope font-bold inline-block rounded p-btn;
180
+ @apply text-white bg-cool-black text-btn2 font-sans font-medium inline-block rounded p-btn;
197
181
  @apply hover:text-white hover:bg-active-orange;
198
182
  @apply active:text-white active:bg-red-orange;
199
183
  @apply focus:text-white focus:bg-cool-black focus:outline-gui-focus;
@@ -217,7 +201,7 @@
217
201
  background-size: 200% 100%;
218
202
  background-position: 0% 0%;
219
203
 
220
- @apply text-white text-btn2 font-manrope font-bold inline-block rounded p-btn;
204
+ @apply text-white text-btn2 font-sans font-medium inline-block rounded p-btn;
221
205
  @apply focus:outline-gui-focus;
222
206
  @apply inline-flex items-center justify-center;
223
207
  }
@@ -233,7 +217,7 @@
233
217
  }
234
218
 
235
219
  .ui-btn-invert {
236
- @apply text-cool-black bg-white text-btn2 font-manrope font-bold inline-block rounded p-btn;
220
+ @apply text-cool-black bg-white text-btn2 font-sans font-medium inline-block rounded p-btn;
237
221
  @apply hover:text-white hover:bg-active-orange;
238
222
  @apply active:text-white active:bg-red-orange;
239
223
  @apply focus:text-white focus:bg-cool-black focus:outline-gui-focus;
@@ -243,7 +227,7 @@
243
227
  }
244
228
 
245
229
  .ui-btn-secondary {
246
- @apply text-cool-black bg-white text-btn2 font-manrope font-bold inline-block border-btn border-cool-black rounded p-btn;
230
+ @apply text-cool-black bg-white text-btn2 font-sans font-medium inline-block border-btn border-cool-black rounded p-btn;
247
231
  @apply hover:text-cool-black hover:border-active-orange hover:bg-white;
248
232
  @apply active:border-red-orange active:bg-white;
249
233
  @apply focus:border-cool-black focus:bg-white focus:outline-gui-focus;
@@ -253,7 +237,7 @@
253
237
  }
254
238
 
255
239
  .ui-btn-secondary-invert {
256
- @apply text-white bg-cool-black text-btn2 font-manrope font-bold inline-block border-btn border-mid-grey rounded p-btn;
240
+ @apply text-white bg-cool-black text-btn2 font-sans font-medium inline-block border-btn border-mid-grey rounded p-btn;
257
241
  @apply hover:text-white hover:border-active-orange;
258
242
  @apply active:border-red-orange;
259
243
  @apply focus:outline-gui-focus;
@@ -338,54 +322,48 @@
338
322
  }
339
323
  @layer components {
340
324
  .ui-text-title {
341
- @apply font-manrope font-extrabold text-cool-black;
342
- @apply text-title-xs xs:text-title xl:text-title-xl leading-tight;
343
- @apply tracking-tighten-0.015 xs:tracking-tighten-0.02 xl:tracking-tighten-0.02;
325
+ @apply font-sans font-medium text-cool-black;
326
+ @apply text-title-xs xs:text-title xl:text-title-xl;
327
+ @apply tracking-tighten-0.01 xs:tracking-tighten-0.015 xl:tracking-tighten-0.02;
344
328
  }
345
329
 
346
330
  .ui-text-h1 {
347
- @apply font-manrope font-extrabold text-cool-black;
348
- @apply text-h1-xs xs:text-h1 xl:text-h1-xl leading-tight;
349
- @apply tracking-tighten-0.0125 xs:tracking-tighten-0.015;
331
+ @apply font-sans font-medium text-cool-black;
332
+ @apply text-h1-xs xs:text-h1 xl:text-h1-xl;
333
+ @apply tracking-tighten-0.01;
350
334
  }
351
335
 
352
336
  .ui-text-h2 {
353
- @apply font-manrope font-extrabold text-cool-black;
354
- @apply text-h2-xs xs:text-h2 xl:text-h2-xl leading-tight;
355
- @apply tracking-tighten-0.015 xs:tracking-tighten-0.01;
337
+ @apply font-sans font-medium text-cool-black;
338
+ @apply text-h2-xs xs:text-h2 xl:text-h2-xl;
339
+ @apply tracking-tighten-0.005;
356
340
  }
357
341
 
358
342
  .ui-text-h3 {
359
- @apply font-manrope font-extrabold text-cool-black;
360
- @apply text-h3 leading-tight;
361
- @apply tracking-tighten-0.005;
343
+ @apply font-sans font-medium text-cool-black;
344
+ @apply text-h3;
345
+ @apply tracking-tighten-0.0025;
362
346
  }
363
347
 
364
348
  .ui-text-h4 {
365
- @apply font-manrope font-extrabold text-cool-black;
366
- @apply text-h4 leading-tight;
367
- @apply tracking-tighten-0.0015;
368
- }
369
-
370
- .ui-text-h5 {
371
- @apply font-manrope font-extrabold text-cool-black;
372
- @apply text-h5 leading-tight;
373
- @apply tracking-tighten-0.0025;
349
+ @apply font-sans font-medium text-cool-black;
350
+ @apply text-h4;
351
+ @apply tracking-widen-0.1;
374
352
  }
375
353
 
376
354
  .ui-text-p1 {
377
- @apply font-manrope font-medium text-charcoal-grey;
378
- @apply text-p1 leading-relaxed;
355
+ @apply font-sans font-light text-charcoal-grey;
356
+ @apply text-p1;
379
357
  }
380
358
 
381
359
  .ui-text-p2 {
382
- @apply font-manrope font-medium text-charcoal-grey;
383
- @apply text-p2 leading-relaxed;
360
+ @apply font-sans font-light text-charcoal-grey;
361
+ @apply text-p2;
384
362
  }
385
363
 
386
364
  .ui-text-p3 {
387
- @apply font-manrope font-medium text-charcoal-grey;
388
- @apply text-p3 leading-relaxed;
365
+ @apply font-sans font-light text-charcoal-grey;
366
+ @apply text-p3;
389
367
  }
390
368
 
391
369
  .ui-text-standfirst {
@@ -395,63 +373,60 @@
395
373
  }
396
374
 
397
375
  .ui-text-quote {
398
- @apply font-manrope font-normal text-cool-black;
399
- @apply text-quote leading-normal;
400
- @apply tracking-tighten-0.0015;
376
+ @apply font-sans font-light text-cool-black;
377
+ @apply text-quote;
378
+ @apply tracking-tighten-0.025;
401
379
  }
402
380
 
403
381
  .ui-text-sub-header {
404
- @apply font-manrope font-semibold text-neutral-900;
405
- @apply text-sub-header-xs xs:text-sub-header leading-normal;
382
+ @apply font-sans font-light text-dark-grey;
383
+ @apply text-sub-header-xs xs:text-sub-header;
384
+ @apply tracking-tighten-0.025;
406
385
  }
407
386
 
408
387
  .ui-text-overline1 {
409
- @apply font-jetbrains_mono font-medium text-active-orange uppercase;
410
- @apply text-overline1 leading-normal;
411
- @apply tracking-widen-0.16;
388
+ @apply font-sans font-medium text-dark-grey uppercase;
389
+ @apply text-overline1;
390
+ @apply tracking-widen-0.15;
412
391
  }
413
392
 
414
393
  .ui-text-overline2 {
415
- @apply font-jetbrains_mono font-medium text-active-orange uppercase;
416
- @apply text-overline2 leading-normal;
417
- @apply tracking-widen-0.16;
394
+ @apply font-sans font-medium text-dark-grey uppercase;
395
+ @apply text-overline2;
396
+ @apply tracking-widen-0.1;
418
397
  }
419
398
 
420
399
  .ui-text-menu1 {
421
- @apply font-manrope font-medium text-cool-black;
422
- @apply text-menu1 leading-snug;
400
+ @apply font-sans font-light text-cool-black;
401
+ @apply text-menu1;
423
402
  }
424
403
 
425
404
  .ui-text-menu2 {
426
- @apply font-manrope font-medium text-cool-black;
427
- @apply text-menu2 leading-snug;
405
+ @apply font-sans font-light text-cool-black;
406
+ @apply text-menu2;
428
407
  }
429
408
 
430
409
  .ui-text-menu3 {
431
- @apply font-manrope font-medium text-cool-black;
432
- @apply text-menu3 leading-snug;
410
+ @apply font-sans font-light text-cool-black;
411
+ @apply text-menu3;
433
412
  }
434
413
 
435
414
  .ui-text-code {
436
- @apply font-jetbrains_mono font-medium text-code;
437
- }
438
-
439
- .ui-text-code2 {
440
- @apply font-jetbrains_mono font-medium text-code2;
415
+ @apply font-mono font-semibold text-code;
441
416
  }
442
417
 
443
418
  .ui-text-code-inline {
444
- @apply font-jetbrains_mono font-medium text-code text-charcoal-grey bg-light-grey p-inline-code rounded-sm mx-1;
419
+ @apply font-mono font-semibold text-code text-charcoal-grey bg-light-grey p-inline-code rounded-sm mx-1;
445
420
  }
446
421
 
447
422
  .ui-unordered-list {
448
- @apply text-p1 font-medium text-cool-black;
449
- @apply list-disc ml-32 my-16;
423
+ @apply text-p1 font-light text-cool-black;
424
+ @apply list-disc ml-32 mb-24;
450
425
  }
451
426
 
452
427
  .ui-ordered-list {
453
- @apply text-p1 font-medium text-charcoal-grey;
454
- @apply ml-32 my-16 list-decimal;
428
+ @apply text-p1 font-light text-cool-black;
429
+ @apply ml-32 mb-24 list-decimal;
455
430
  }
456
431
 
457
432
  .ui-unordered-list li > *:last-of-type:not(ul):not(ol),
@@ -468,20 +443,11 @@
468
443
  }
469
444
 
470
445
  .ui-unordered-list ul ul {
471
- @apply list-square my-8;
472
- }
473
-
474
- .ui-unordered-list ul ul {
475
- @apply my-8;
476
- }
477
-
478
- .ui-ordered-list li,
479
- .ui-unordered-list li {
480
- @apply font-medium font-manrope tracking-widen-0 leading-relaxed;
446
+ @apply list-square;
481
447
  }
482
448
 
483
449
  .ui-unordered-list-with-emphasis {
484
- @apply text-p1 font-medium text-cool-black;
450
+ @apply text-p1 font-light text-cool-black;
485
451
  @apply list-disc ml-32 mt-32 -mb-12;
486
452
  }
487
453
 
@@ -517,11 +483,11 @@
517
483
  }
518
484
  @layer components {
519
485
  .ui-checkbox-p1 {
520
- @apply flex items-start mb-16 font-manrope font-medium;
486
+ @apply flex items-start mb-16 font-sans;
521
487
  }
522
488
 
523
489
  .ui-checkbox-p2 {
524
- @apply flex items-start mb-12 font-manrope font-medium;
490
+ @apply flex items-start mb-12 font-sans;
525
491
  }
526
492
 
527
493
  .ui-checkbox-input {
@@ -540,12 +506,12 @@
540
506
 
541
507
  .ui-checkbox-label-p1 {
542
508
  @apply select-none;
543
- @apply text-p1 font-medium text-cool-black;
509
+ @apply text-p1 font-light text-cool-black;
544
510
  }
545
511
 
546
512
  .ui-checkbox-label-p2 {
547
513
  @apply select-none;
548
- @apply text-p2 font-medium text-cool-black;
514
+ @apply text-p2 font-light text-cool-black;
549
515
  }
550
516
 
551
517
  .ui-checkbox-input:disabled + .ui-checkbox-styled {
@@ -566,7 +532,7 @@
566
532
  }
567
533
 
568
534
  .ui-textarea {
569
- @apply font-manrope font-medium text-cool-black text-p1;
535
+ @apply font-sans font-light text-cool-black text-p1;
570
536
  @apply p-input mb-16;
571
537
  @apply bg-light-grey border-mid-grey transition-input border rounded block w-full;
572
538
  @apply hover:bg-white hover:shadow-input hover:border-transparent;
@@ -1,3 +1,3 @@
1
1
  module AblyUi
2
- VERSION = '8.7.0.dev.779bcfa'
2
+ VERSION = '8.7.0.dev.827e917'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ably-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.7.0.dev.779bcfa
4
+ version: 8.7.0.dev.827e917
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dominik Piatek
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-06-19 00:00:00.000000000 Z
13
+ date: 2023-11-14 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: view_component
@@ -91,8 +91,6 @@ files:
91
91
  - lib/ably_ui/core/fonts/NEXT-Book-Medium.otf
92
92
  - lib/ably_ui/core/fonts/NEXT-Book-Medium.woff
93
93
  - lib/ably_ui/core/fonts/NEXT-Book-Medium.woff2
94
- - lib/ably_ui/core/fonts/jetBrains-mono.css
95
- - lib/ably_ui/core/fonts/manrope.css
96
94
  - lib/ably_ui/core/fonts/next.css
97
95
  - lib/ably_ui/core/fonts/source-code-pro.css
98
96
  - lib/ably_ui/core/footer/component.css
@@ -105,6 +103,7 @@ files:
105
103
  - lib/ably_ui/core/images/ably-logo.png
106
104
  - lib/ably_ui/core/images/ably-logo.svg
107
105
  - lib/ably_ui/core/images/ably-stack.svg
106
+ - lib/ably_ui/core/images/best-support-2023.svg
108
107
  - lib/ably_ui/core/images/cust-logo-ao-col-pos.png
109
108
  - lib/ably_ui/core/images/cust-logo-ao-col-pos@2x.png
110
109
  - lib/ably_ui/core/images/cust-logo-ausopen-col-pos.png
@@ -130,9 +129,12 @@ files:
130
129
  - lib/ably_ui/core/images/cust-photo-hubspot-max-freiert.jpg
131
130
  - lib/ably_ui/core/images/cust-photo-split-pato-echague.jpg
132
131
  - lib/ably_ui/core/images/cust-photo-vitac-joe-antonio.jpg
132
+ - lib/ably_ui/core/images/fastest-implementation-2023.svg
133
133
  - lib/ably_ui/core/images/flexible-companies.png
134
134
  - lib/ably_ui/core/images/high-performer-2022.png
135
+ - lib/ably_ui/core/images/high-performer-2023.svg
135
136
  - lib/ably_ui/core/images/highest-user-adoption-2022.png
137
+ - lib/ably_ui/core/images/highest-user-adoption-2023.svg
136
138
  - lib/ably_ui/core/images/icon-tech-aws.svg
137
139
  - lib/ably_ui/core/images/rocket-list-2021.png
138
140
  - lib/ably_ui/core/images/scale-motif-open-empathetic.svg
@@ -158,9 +160,9 @@ files:
158
160
  - lib/ably_ui/core/meganav_content_developers/component.js
159
161
  - lib/ably_ui/core/meganav_content_developers/meganav_content_developers.html.erb
160
162
  - lib/ably_ui/core/meganav_content_developers/meganav_content_developers.rb
161
- - lib/ably_ui/core/meganav_content_platform/component.js
162
- - lib/ably_ui/core/meganav_content_platform/meganav_content_platform.html.erb
163
- - lib/ably_ui/core/meganav_content_platform/meganav_content_platform.rb
163
+ - lib/ably_ui/core/meganav_content_products/component.js
164
+ - lib/ably_ui/core/meganav_content_products/meganav_content_products.html.erb
165
+ - lib/ably_ui/core/meganav_content_products/meganav_content_products.rb
164
166
  - lib/ably_ui/core/meganav_content_use_cases/component.js
165
167
  - lib/ably_ui/core/meganav_content_use_cases/meganav_content_use_cases.html.erb
166
168
  - lib/ably_ui/core/meganav_content_use_cases/meganav_content_use_cases.rb
@@ -1,3 +0,0 @@
1
- @layer base {
2
- @import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;200;300;400;500;600;700;800&display=swap");
3
- }
@@ -1,3 +0,0 @@
1
- @layer base {
2
- @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
3
- }