@enki-tek/fms-web-components 0.0.3 → 0.0.5

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.
@@ -1,144 +1,721 @@
1
1
  <script>
2
2
  import { Offcanvas } from 'sveltestrap';
3
+ import Icon from '../Icon/Icon.svelte';
4
+
3
5
  export let companyName = 'Vertfarm';
4
6
  export let navItems = [
5
- { name: 'Home', icon: 'home' },
6
- { name: 'About', icon: 'person' },
7
- { name: 'Services', icon: 'settings' },
8
- { name: 'Contact', icon: 'email' },
9
- { name: 'Home', icon: 'home' },
10
- { name: 'About', icon: 'person' },
11
- { name: 'Services', icon: 'settings' },
12
- { name: 'Contact', icon: 'email' }
7
+ { name: 'Overview', icon: 'house-fill', route: '/overview' },
8
+ { name: 'Container Types', icon: 'aspect-ratio', route: '/container-types' },
9
+ { name: 'Containers', icon: 'view-list', route: '/containers' },
10
+ { name: 'Batch Operations', icon: 'grid', route: '/batch-operations' },
11
+ { name: 'Recipe', icon: 'soundwave', route: '/recipe' },
12
+ { name: 'Work Order', icon: 'collection', route: '/work-order' },
13
+ { name: 'Protocol', icon: 'textarea', route: '/protocol' },
14
+ { name: 'Users', icon: 'people', route: '/users' },
15
+ { name: 'Packaging Configuration', icon: 'box-seam', route: '/packaging-configuration' },
16
+ { name: 'Delivery', icon: 'truck', route: '/delivery' }
13
17
  ];
18
+
14
19
  let isOpen = false;
20
+ let activeItem = 'Overview';
15
21
  </script>
16
22
 
17
23
  <div class="container-fluid">
18
24
  <div class="row">
19
25
  <!-- Toggle button for offcanvas -->
20
26
  <div class="col-auto icon-sidebar">
21
- <button
22
- class="toggleButton"
23
- type="button"
24
- data-bs-toggle="offcanvas"
25
- data-bs-target="#offcanvasScrolling"
26
- aria-controls="offcanvasScrolling"
27
- on:click={() => (isOpen = true)}
28
- >
29
- <span class="material-icons">{'keyboard_double_arrow_right'}</span>
30
- </button>
31
27
  <!-- Icon Sidebar -->
32
28
  <div class="icon-sidebar-content">
29
+ <div class="upper-div">
30
+ <div class="icon-btn">
31
+ <button class="toggle-button" type="button" on:click={() => (isOpen = true)}>
32
+ <Icon iconName="chevron-double-right" />
33
+ </button>
34
+ </div>
35
+ <div class="line" />
36
+ </div>
33
37
  <ul class="nav flex-column">
34
38
  {#each navItems as item, index}
35
- <li>
36
- <span class="material-icons">{item.icon}</span>
39
+ <li class:active={activeItem === item.name} on:click={() => (activeItem = item.name)}>
40
+ <Icon iconName={item.icon} />
37
41
  </li>
38
42
  {/each}
39
43
  </ul>
40
44
  </div>
41
45
  </div>
42
46
  <!-- Offcanvas menu -->
43
- <div>
44
- <Offcanvas class="offcanvas offcanvas-start" scroll {isOpen} backdrop={false}>
45
- <div class="offcanvas-header">
46
- <h5 class="offcanvas-title" id="offcanvasScrollingLabel">{companyName}</h5>
47
- <button
48
- type="button"
49
- class="toggleButton"
50
- data-bs-dismiss="offcanvas"
51
- aria-label="Close"
52
- on:click={() => (isOpen = false)}
53
- >
54
- <span class="material-icons">{'keyboard_double_arrow_left'}</span>
55
- </button>
56
- </div>
57
- <div class="offcanvas-body">
58
- <ul class="nav flex-column">
59
- {#each navItems as item, index}
60
- <li class="nav-item">
61
- <span class="material-icons">{item.icon}</span>
62
- <span class="item-name">{item.name}</span>
63
- </li>
64
- {/each}
65
- </ul>
66
- </div>
67
- </Offcanvas>
68
- </div>
47
+ <div class="sidebar-menu">
48
+ <Offcanvas class="offcanvas offcanvas-start" scroll {isOpen} backdrop={false}>
49
+ <div class="offcanvas-header">
50
+ <h5 class="offcanvas-title efs-small" id="offcanvasScrollingLabel">{companyName}</h5>
51
+ <button
52
+ type="button"
53
+ class="toggle-button"
54
+ data-bs-dismiss="offcanvas"
55
+ aria-label="Close"
56
+ on:click={() => (isOpen = false)}
57
+ >
58
+ <span class="material-icons">
59
+ <Icon iconName='chevron-double-left'/>
60
+ </span>
61
+ </button>
62
+ </div>
63
+ <div class="line-open" />
64
+ <div class="offcanvas-body">
65
+ <ul class="nav flex-column">
66
+ {#each navItems as item, index}
67
+ <li
68
+ class="nav-item"
69
+ class:active={activeItem === item.name}
70
+ on:click={() => (activeItem = item.name)}
71
+ >
72
+ <span><Icon iconName={item.icon} /></span>
73
+ <span class="item-name efs-normal">{item.name}</span>
74
+ </li>
75
+ {/each}
76
+ </ul>
77
+ </div>
78
+ </Offcanvas>
79
+ </div>
69
80
  </div>
70
81
  </div>
82
+
71
83
  <style>@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
72
84
  @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
73
85
  @import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
86
+ @import url(https://fonts.googleapis.com/icon?family=Material+Icons);
87
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
88
+ @import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
89
+ ul, .icon-sidebar-content ul li, .icon-sidebar-content .toggle-button {
90
+ color: #ffffff;
91
+ }
92
+ .line-open, .line {
93
+ background: #ffffff;
94
+ }
95
+ :global(.offcanvas-body) {
96
+ background: #007FD8;
97
+ }
98
+ .nav .nav-item.active, .icon-sidebar-content ul .active {
99
+ border-left: 2px solid #ffffff;
100
+ background: #084298;
101
+ }
102
+ .nav-item, .icon-sidebar-content ul li {
103
+ display: flex;
104
+ padding: 15px 32px;
105
+ align-items: center;
106
+ gap: 8px;
107
+ }
74
108
  .row {
75
- --bs-gutter-x: -0.5rem;
109
+ --bs-gutter-x: 0rem;
76
110
  }
77
111
  .icon-sidebar {
78
112
  position: fixed;
79
113
  top: 0;
80
114
  left: 0;
81
115
  height: 100%;
82
- width: 60px;
83
- background-color: #fff;
116
+ width: 88px;
117
+ background: #007FD8;
84
118
  }
85
- .icon-sidebar .toggleButton {
86
- display: flex;
87
- align-items: center;
88
- padding: 20px;
89
- gap: 32px;
119
+ .line {
120
+ width: 88px;
121
+ height: 1px;
90
122
  }
91
- .icon-sidebar-content ul {
92
- padding: 20px;
93
- color: #007FD8;
94
- gap: 32px;
123
+ .icon-btn {
124
+ padding: 20px 27px;
95
125
  }
96
- #offcanvasScrollingLabel {
97
- color: #00A855;
98
- font-size: 28px;
99
- font-weight: 600;
126
+ .icon-sidebar-content ul li {
127
+ padding: 16px 32px;
100
128
  }
101
- ul {
102
- color: #007FD8;
103
- gap: 4px;
129
+ :global(.offcanvas-body) {
130
+ padding: 0rem 0rem;
104
131
  }
105
- .nav-item {
106
- display: flex;
107
- width: 241px;
108
- padding: 15px;
109
- align-items: center;
110
- gap: 10px;
111
- border-radius: 4px;
112
- border: 1px solid #007FD8;
132
+ .offcanvas-title {
133
+ color: #ffffff;
134
+ font-size: 28px;
113
135
  }
114
136
  .nav-item .item-name {
115
- color: #007FD8;
116
- font-size: 16px;
117
- font-style: normal;
118
- font-weight: 400;
119
137
  line-height: 22px;
120
- font-family: "Roboto";
121
138
  }
122
- .toggleButton {
139
+ .toggle-button {
123
140
  background-color: transparent;
124
- border: #fff;
141
+ border: #ffffff;
125
142
  cursor: pointer;
126
143
  }
127
144
  .material-icons {
128
- font-size: 24px;
129
- color: #007FD8;
145
+ font-size: 16px;
146
+ color: #ffffff;
130
147
  }
131
- :global(.offcanvas-start) {
148
+ :global(.offcanvas.offcanvas-start) {
132
149
  width: 274px;
133
150
  border-right: none;
134
151
  }
135
- :global(.offcanvas.offcanvas-start) {
152
+ .offcanvas-header {
153
+ padding: 1.5rem 1.5rem;
154
+ }
155
+ .line-open {
136
156
  width: 274px;
137
- border-right: none;
157
+ height: 1px;
138
158
  }
139
- :global(.offcanvas-body) {
140
- padding: 0.5rem 0.5rem;
159
+ :global(.ebg-none) {
160
+ background-color: #ffffff !important;
141
161
  }
142
- .offcanvas-header {
143
- padding: 0.5rem 0.5rem;
162
+ :global(.ebg-white) {
163
+ background-color: #ffffff;
164
+ }
165
+ :global(.ebg-secondary, .eactive-secondary:active, .ehover-secondary:hover) {
166
+ background-color: #3AC82E !important;
167
+ }
168
+ :global(.ebg-secondaryDark, .eactive-secondaryDark:active, .ehover-secondaryDark:hover) {
169
+ background-color: #00A855;
170
+ }
171
+ :global(.ebg-secondaryLight, .eactive-secondaryLight:active, .ehover-secondaryLight:hover) {
172
+ background-color: #CBFFC7;
173
+ }
174
+ :global(.ebg-primary) {
175
+ background-color: #00AEE5;
176
+ }
177
+ :global(.ebg-primaryDark) {
178
+ background-color: #007FD8;
179
+ }
180
+ :global(.ebg-primaryLight) {
181
+ background-color: #CEF3FF;
182
+ }
183
+ :global(.ebg-danger) {
184
+ background-color: #FE4747;
185
+ }
186
+ :global(.ebg-dangerDark) {
187
+ background-color: #B02A37;
188
+ }
189
+ :global(.ebg-dangerLight) {
190
+ background-color: #FE4747;
191
+ }
192
+ :global(.ebg-warning) {
193
+ background-color: #FFBA3A;
194
+ }
195
+ :global(.ebg-warningDark) {
196
+ background-color: #997404;
197
+ color: #ffffff !important;
198
+ }
199
+ :global(.ebg-warningLight) {
200
+ background-color: #FFF3CD;
201
+ }
202
+ :global(.ebg-info) {
203
+ background-color: #0DCAF0;
204
+ }
205
+ :global(.ebg-infoDark) {
206
+ background-color: #087990;
207
+ }
208
+ :global(.ebg-infoLight) {
209
+ background-color: #9EEAF9;
210
+ }
211
+ :global(.ebg-success) {
212
+ background-color: #00A96B;
213
+ }
214
+ :global(.ebg-successDark) {
215
+ background-color: #146C43;
216
+ }
217
+ :global(.ebg-successLight) {
218
+ background-color: #D1E7DD;
219
+ }
220
+ :global(.ebg-gray100) {
221
+ background-color: #F8F9FA;
222
+ }
223
+ :global(.ebg-gray200) {
224
+ background-color: #E9ECEF;
225
+ }
226
+ :global(.ebg-gray300) {
227
+ background-color: #DEE2E6;
228
+ }
229
+ :global(.ebg-gray400) {
230
+ background-color: #CED4DA;
231
+ }
232
+ :global(.ebg-gray500) {
233
+ background-color: #adb5bd;
234
+ }
235
+ :global(.ebg-gray600) {
236
+ background-color: #6C757D;
237
+ }
238
+ :global(.ebg-gray700) {
239
+ background-color: #495057;
240
+ }
241
+ :global(.ebg-gray800) {
242
+ background-color: #343A40;
243
+ }
244
+ :global(.ebg-gray900) {
245
+ background-color: #212529;
246
+ }
247
+ :global(.ebg-green100) {
248
+ background-color: #D1E7DD;
249
+ }
250
+ :global(.ebg-green200) {
251
+ background-color: #A3CFBB;
252
+ }
253
+ :global(.ebg-green300) {
254
+ background-color: #75B798;
255
+ }
256
+ :global(.ebg-green400) {
257
+ background-color: #479F76;
258
+ }
259
+ :global(.ebg-green500) {
260
+ background-color: #198754;
261
+ }
262
+ :global(.ebg-green600) {
263
+ background-color: #146C43;
264
+ }
265
+ :global(.ebg-green700) {
266
+ background-color: #0F5132;
267
+ }
268
+ :global(.ebg-green800) {
269
+ background-color: #0A3622;
270
+ }
271
+ :global(.ebg-green900) {
272
+ background-color: #051B11;
273
+ }
274
+ :global(.ebg-red100) {
275
+ background-color: #F8D7DA;
276
+ }
277
+ :global(.ebg-red200) {
278
+ background-color: #F1AEB5;
279
+ }
280
+ :global(.ebg-red300) {
281
+ background-color: #EA868F;
282
+ }
283
+ :global(.ebg-red400) {
284
+ background-color: #E35D6A;
285
+ }
286
+ :global(.ebg-red500) {
287
+ background-color: #DC3545;
288
+ }
289
+ :global(.ebg-red600) {
290
+ background-color: #B02A37;
291
+ }
292
+ :global(.ebg-red700) {
293
+ background-color: #842029;
294
+ }
295
+ :global(.ebg-red800) {
296
+ background-color: #58151C;
297
+ }
298
+ :global(.ebg-red900) {
299
+ background-color: #2C0B0E;
300
+ }
301
+ :global(.ebg-yellow100) {
302
+ background-color: #FFF3CD;
303
+ }
304
+ :global(.ebg-yellow200) {
305
+ background-color: #FFE69C;
306
+ }
307
+ :global(.ebg-yellow300) {
308
+ background-color: #FFDA6A;
309
+ }
310
+ :global(.ebg-yellow400) {
311
+ background-color: #FFCD39;
312
+ }
313
+ :global(.ebg-yellow500) {
314
+ background-color: #FFC107;
315
+ }
316
+ :global(.ebg-yellow600) {
317
+ background-color: #CC9A06;
318
+ }
319
+ :global(.ebg-yellow700) {
320
+ background-color: #997404;
321
+ }
322
+ :global(.ebg-yellow800) {
323
+ background-color: #664D03;
324
+ }
325
+ :global(.ebg-yellow900) {
326
+ background-color: #332701;
327
+ }
328
+ :global(.ebg-cyan100) {
329
+ background-color: #CFF4FC;
330
+ }
331
+ :global(.ebg-cyan200) {
332
+ background-color: #9EEAF9;
333
+ }
334
+ :global(.ebg-cyan300) {
335
+ background-color: #6EDFF6;
336
+ }
337
+ :global(.ebg-cyan400) {
338
+ background-color: #3DD5F3;
339
+ }
340
+ :global(.ebg-cyan500) {
341
+ background-color: #0DCAF0;
342
+ }
343
+ :global(.ebg-cyan600) {
344
+ background-color: #0AA2C0;
345
+ }
346
+ :global(.ebg-cyan700) {
347
+ background-color: #087990;
348
+ }
349
+ :global(.ebg-cyan800) {
350
+ background-color: #055160;
351
+ }
352
+ :global(.ebg-cyan900) {
353
+ background-color: #032830;
354
+ }
355
+ .etext-white {
356
+ color: #ffffff;
357
+ }
358
+ :global(.etext-dark) {
359
+ color: #000000;
360
+ }
361
+ :global(.etext-secondary) {
362
+ color: #3AC82E;
363
+ }
364
+ :global(.etext-secondaryDark) {
365
+ color: #00A855;
366
+ }
367
+ :global(.etext-secondaryLight) {
368
+ color: #CBFFC7;
369
+ }
370
+ :global(.etext-primary) {
371
+ color: #00AEE5;
372
+ }
373
+ :global(.etext-primaryDark) {
374
+ color: #007FD8;
375
+ }
376
+ :global(.etext-primaryLight) {
377
+ color: #CEF3FF;
378
+ }
379
+ :global(.etext-danger) {
380
+ color: #FE4747;
381
+ }
382
+ :global(.etext-dangerDark) {
383
+ color: #B02A37;
384
+ }
385
+ :global(.etext-dangerLight) {
386
+ color: #FE4747;
387
+ }
388
+ :global(.etext-info) {
389
+ color: #0DCAF0;
390
+ }
391
+ :global(.etext-infoDark) {
392
+ color: #087990;
393
+ }
394
+ :global(.etext-infoLight) {
395
+ color: #9EEAF9;
396
+ }
397
+ :global(.etext-success) {
398
+ color: #00A96B;
399
+ }
400
+ :global(.etext-successDark) {
401
+ color: #146C43;
402
+ }
403
+ :global(.etext-successLight) {
404
+ color: #D1E7DD;
405
+ }
406
+ :global(.etext-warning) {
407
+ color: #FFBA3A;
408
+ }
409
+ :global(.etext-warningDark) {
410
+ color: #997404;
411
+ }
412
+ :global(.etext-warningLight) {
413
+ color: #FFF3CD;
414
+ }
415
+ :global(.etext-gray100) {
416
+ color: #F8F9FA;
417
+ }
418
+ :global(.etext-gray200) {
419
+ color: #E9ECEF;
420
+ }
421
+ :global(.etext-gray300) {
422
+ color: #DEE2E6;
423
+ }
424
+ :global(.etext-gray400) {
425
+ color: #CED4DA;
426
+ }
427
+ :global(.etext-gray500) {
428
+ color: #adb5bd;
429
+ }
430
+ :global(.etext-gray600) {
431
+ color: #6C757D;
432
+ }
433
+ :global(.etext-gray700) {
434
+ color: #495057;
435
+ }
436
+ :global(.etext-gray800) {
437
+ color: #343A40;
438
+ }
439
+ :global(.etext-gray900) {
440
+ color: #212529;
441
+ }
442
+ :global(.etext-green100) {
443
+ color: #D1E7DD;
444
+ }
445
+ :global(.etext-green200) {
446
+ color: #A3CFBB;
447
+ }
448
+ :global(.etext-green300) {
449
+ color: #75B798;
450
+ }
451
+ :global(.etext-green400) {
452
+ color: #479F76;
453
+ }
454
+ :global(.etext-green500) {
455
+ color: #198754;
456
+ }
457
+ :global(.etext-green600) {
458
+ color: #146C43;
459
+ }
460
+ :global(.etext-green700) {
461
+ color: #0F5132;
462
+ }
463
+ :global(.etext-green800) {
464
+ color: #0A3622;
465
+ }
466
+ :global(.etext-green900) {
467
+ color: #051B11;
468
+ }
469
+ :global(.etext-red100) {
470
+ color: #F8D7DA;
471
+ }
472
+ :global(.etext-red200) {
473
+ color: #F1AEB5;
474
+ }
475
+ :global(.etext-red300) {
476
+ color: #EA868F;
477
+ }
478
+ :global(.etext-red400) {
479
+ color: #E35D6A;
480
+ }
481
+ :global(.etext-red500) {
482
+ color: #DC3545;
483
+ }
484
+ :global(.etext-red600) {
485
+ color: #B02A37;
486
+ }
487
+ :global(.etext-red700) {
488
+ color: #842029;
489
+ }
490
+ :global(.etext-red800) {
491
+ color: #58151C;
492
+ }
493
+ :global(.etext-red900) {
494
+ color: #2C0B0E;
495
+ }
496
+ :global(.etext-yellow100) {
497
+ color: #FFF3CD;
498
+ }
499
+ :global(.etext-yellow200) {
500
+ color: #FFE69C;
501
+ }
502
+ :global(.etext-yellow300) {
503
+ color: #FFDA6A;
504
+ }
505
+ :global(.etext-yellow400) {
506
+ color: #FFCD39;
507
+ }
508
+ :global(.etext-yellow500) {
509
+ color: #FFC107;
510
+ }
511
+ :global(.etext-yellow600) {
512
+ color: #CC9A06;
513
+ }
514
+ :global(.etext-yellow700) {
515
+ color: #997404;
516
+ }
517
+ :global(.etext-yellow800) {
518
+ color: #664D03;
519
+ }
520
+ :global(.etext-yellow900) {
521
+ color: #332701;
522
+ }
523
+ :global(.etext-cyan100) {
524
+ color: #CFF4FC;
525
+ }
526
+ :global(.etext-cyan200) {
527
+ color: #9EEAF9;
528
+ }
529
+ :global(.etext-cyan300) {
530
+ color: #6EDFF6;
531
+ }
532
+ :global(.etext-cyan400) {
533
+ color: #3DD5F3;
534
+ }
535
+ :global(.etext-cyan500) {
536
+ color: #0DCAF0;
537
+ }
538
+ :global(.etext-cyan600) {
539
+ color: #0AA2C0;
540
+ }
541
+ :global(.etext-cyan700) {
542
+ color: #087990;
543
+ }
544
+ :global(.etext-cyan800) {
545
+ color: #055160;
546
+ }
547
+ :global(.etext-cyan900) {
548
+ color: #032830;
549
+ }
550
+ :global(.eoutline-secondary) {
551
+ outline: 1px solid #3AC82E;
552
+ }
553
+ :global(.eoutline-secondaryDark) {
554
+ outline: 1px solid #00A855;
555
+ }
556
+ :global(.eoutline-secondaryLight) {
557
+ outline: 1px solid #CBFFC7;
558
+ }
559
+ :global(.eoutline-primary) {
560
+ outline: 1px solid #00AEE5;
561
+ }
562
+ :global(.eoutline-primaryDark) {
563
+ outline: 1px solid #007FD8;
564
+ }
565
+ :global(.eoutline-primaryLight) {
566
+ outline: 1px solid #CEF3FF;
567
+ }
568
+ :global(.eoutline-danger) {
569
+ outline: 1px solid #FE4747;
570
+ }
571
+ :global(.eoutline-dangerDark) {
572
+ outline: 1px solid #B02A37;
573
+ }
574
+ :global(.eoutline-dangerLight) {
575
+ outline: 1px solid #FE4747;
576
+ }
577
+ :global(.eoutline-success) {
578
+ outline: 1px solid #00A96B;
579
+ }
580
+ :global(.eoutline-successDark) {
581
+ outline: 1px solid #146C43;
582
+ }
583
+ :global(.eoutline-successLight) {
584
+ outline: 1px solid #D1E7DD;
585
+ }
586
+ :global(.eoutline-info) {
587
+ outline: 1px solid #0DCAF0;
588
+ }
589
+ :global(.eoutline-infoDark) {
590
+ outline: 1px solid #087990;
591
+ }
592
+ :global(.eoutline-infoLight) {
593
+ outline: 1px solid #9EEAF9;
594
+ }
595
+ :global(.eoutline-warning) {
596
+ outline: 1px solid #FFBA3A;
597
+ }
598
+ :global(.eoutline-warningDark) {
599
+ outline: 1px solid #997404;
600
+ }
601
+ :global(.eoutline-warningLight) {
602
+ outline: 1px solid #FFF3CD;
603
+ }
604
+ :global(.eradius) {
605
+ border-radius: 4px;
606
+ }
607
+ :global(.eradius-low) {
608
+ border-radius: 8px;
609
+ }
610
+ :global(.eradius-medium) {
611
+ border-radius: 16px;
612
+ }
613
+ :global(.eradius-full) {
614
+ border-radius: 50%;
615
+ }
616
+ .eshadow-non {
617
+ box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
618
+ }
619
+ .eshadow-low {
620
+ box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
621
+ }
622
+ .eshadow-medium {
623
+ box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
624
+ }
625
+ .eshadow-high {
626
+ box-shadow: 0px 1px 16px 0px rgba(0, 0, 0, 0.1);
627
+ }
628
+ :global(.efs-small) {
629
+ font-family: Roboto;
630
+ font-size: 12px;
631
+ font-style: normal;
632
+ font-weight: 400;
633
+ line-height: normal;
634
+ }
635
+ :global(.efs-normal) {
636
+ font-family: Roboto;
637
+ font-size: 16px;
638
+ font-style: normal;
639
+ font-weight: 400;
640
+ line-height: 28px;
641
+ }
642
+ :global(.efs-strong) {
643
+ font-family: Roboto;
644
+ font-size: 17px;
645
+ font-style: normal;
646
+ font-weight: 700;
647
+ line-height: 28px;
648
+ }
649
+ :global(.efs-h6) {
650
+ font-family: Roboto;
651
+ font-size: 16px;
652
+ font-style: normal;
653
+ font-weight: 700;
654
+ line-height: normal;
655
+ }
656
+ :global(.efs-h5) {
657
+ font-family: Roboto;
658
+ font-size: 20px;
659
+ font-style: normal;
660
+ font-weight: 700;
661
+ line-height: normal;
662
+ }
663
+ :global(.efs-h4) {
664
+ font-family: Roboto;
665
+ font-size: 24px;
666
+ font-style: normal;
667
+ font-weight: 700;
668
+ line-height: normal;
669
+ }
670
+ :global(.efs-h3) {
671
+ font-family: Roboto;
672
+ font-size: 28px;
673
+ font-style: normal;
674
+ font-weight: 700;
675
+ line-height: normal;
676
+ }
677
+ :global(.efs-h2) {
678
+ font-family: Roboto;
679
+ font-size: 32px;
680
+ font-style: normal;
681
+ font-weight: 700;
682
+ line-height: normal;
683
+ }
684
+ :global(.efs-h1) {
685
+ font-family: Roboto;
686
+ font-size: 40px;
687
+ font-style: normal;
688
+ font-weight: 700;
689
+ line-height: normal;
690
+ letter-spacing: -0.8px;
691
+ }
692
+ :global(.efs-h4D) {
693
+ font-family: Merriweather;
694
+ font-size: 52px;
695
+ font-style: normal;
696
+ font-weight: 400;
697
+ line-height: normal;
698
+ }
699
+ :global(.efs-h3D) {
700
+ font-family: Merriweather;
701
+ font-size: 58px;
702
+ font-style: normal;
703
+ font-weight: 400;
704
+ line-height: normal;
705
+ }
706
+ :global(.efs-h2D) {
707
+ font-family: Merriweather;
708
+ font-size: 64px;
709
+ font-style: normal;
710
+ font-weight: 400;
711
+ line-height: normal;
712
+ letter-spacing: -1.28px;
713
+ }
714
+ :global(.efs-h1D) {
715
+ font-family: Merriweather;
716
+ font-size: 72px;
717
+ font-style: normal;
718
+ font-weight: 400;
719
+ line-height: normal;
144
720
  }</style>
721
+