@syscore/ui-library 1.3.2 → 1.3.4
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.
- package/client/components/ui/card.tsx +3 -3
- package/client/global.css +312 -0
- package/client/storybook.css +1 -292
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +180 -0
- package/dist/index.es.js +4502 -6
- package/package.json +1 -1
|
@@ -83,10 +83,10 @@ const CardWithIcon = React.forwardRef<
|
|
|
83
83
|
>(({ icon: Icon, title, description }, ref) => (
|
|
84
84
|
<Card
|
|
85
85
|
ref={ref}
|
|
86
|
-
className="
|
|
86
|
+
className="card-with-icon"
|
|
87
87
|
>
|
|
88
|
-
<div className="
|
|
89
|
-
{Icon && <Icon className="
|
|
88
|
+
<div className="card-with-icon__header">
|
|
89
|
+
{Icon && <Icon className="card-with-icon__icon" />}
|
|
90
90
|
<Text as="h3" variant="overline-large">{title}</Text>
|
|
91
91
|
</div>
|
|
92
92
|
<Text as="p" variant="body-base">{description}</Text>
|
package/client/global.css
CHANGED
|
@@ -400,6 +400,31 @@
|
|
|
400
400
|
color: var(--color-gray-800, #282a31);
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
+
.card-with-icon {
|
|
404
|
+
border: 1px solid var(--color-gray-100, #eff1f2);
|
|
405
|
+
background-color: var(--color-white, #fff);
|
|
406
|
+
padding: 1.5rem;
|
|
407
|
+
gap: 1.5rem;
|
|
408
|
+
transition: transform 200ms ease-in-out, border-color 200ms ease-in-out;
|
|
409
|
+
will-change: transform;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.card-with-icon:hover {
|
|
413
|
+
transform: scale(1.02);
|
|
414
|
+
border-color: var(--color-gray-200, #dedfe3);
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.card-with-icon__header {
|
|
418
|
+
display: flex;
|
|
419
|
+
align-items: center;
|
|
420
|
+
gap: 1rem;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.card-with-icon__icon {
|
|
424
|
+
width: 3rem;
|
|
425
|
+
height: 3rem;
|
|
426
|
+
}
|
|
427
|
+
|
|
403
428
|
/* Input Styles */
|
|
404
429
|
.input-wrapper {
|
|
405
430
|
display: flex;
|
|
@@ -5547,3 +5572,290 @@
|
|
|
5547
5572
|
flex-shrink: 0;
|
|
5548
5573
|
margin-right: 1rem;
|
|
5549
5574
|
}
|
|
5575
|
+
|
|
5576
|
+
.heading-large {
|
|
5577
|
+
font-family: var(--font-ftmade);
|
|
5578
|
+
font-size: 38px;
|
|
5579
|
+
line-height: 40px;
|
|
5580
|
+
letter-spacing: -0.38px;
|
|
5581
|
+
|
|
5582
|
+
&::before {
|
|
5583
|
+
content: "";
|
|
5584
|
+
margin-bottom: -0.2703em;
|
|
5585
|
+
display: table;
|
|
5586
|
+
}
|
|
5587
|
+
&::after {
|
|
5588
|
+
content: "";
|
|
5589
|
+
margin-top: -0.1023em;
|
|
5590
|
+
display: table;
|
|
5591
|
+
}
|
|
5592
|
+
}
|
|
5593
|
+
|
|
5594
|
+
.heading-medium {
|
|
5595
|
+
font-family: var(--font-ftmade);
|
|
5596
|
+
font-size: 34px;
|
|
5597
|
+
line-height: 36px;
|
|
5598
|
+
letter-spacing: -0.34px;
|
|
5599
|
+
|
|
5600
|
+
&::before {
|
|
5601
|
+
content: "";
|
|
5602
|
+
margin-bottom: -0.2734em;
|
|
5603
|
+
display: table;
|
|
5604
|
+
}
|
|
5605
|
+
&::after {
|
|
5606
|
+
content: "";
|
|
5607
|
+
margin-top: -0.1054em;
|
|
5608
|
+
display: table;
|
|
5609
|
+
}
|
|
5610
|
+
}
|
|
5611
|
+
|
|
5612
|
+
.heading-small {
|
|
5613
|
+
font-family: var(--font-ftmade);
|
|
5614
|
+
font-size: 30px;
|
|
5615
|
+
line-height: 32px;
|
|
5616
|
+
letter-spacing: -0.3px;
|
|
5617
|
+
|
|
5618
|
+
&::before {
|
|
5619
|
+
content: "";
|
|
5620
|
+
margin-bottom: -0.2773em;
|
|
5621
|
+
display: table;
|
|
5622
|
+
}
|
|
5623
|
+
&::after {
|
|
5624
|
+
content: "";
|
|
5625
|
+
margin-top: -0.1093em;
|
|
5626
|
+
display: table;
|
|
5627
|
+
}
|
|
5628
|
+
}
|
|
5629
|
+
|
|
5630
|
+
.heading-xsmall {
|
|
5631
|
+
font-family: var(--font-ftmade);
|
|
5632
|
+
font-size: 22px;
|
|
5633
|
+
line-height: 24px;
|
|
5634
|
+
letter-spacing: -0.22px;
|
|
5635
|
+
|
|
5636
|
+
&::before {
|
|
5637
|
+
content: "";
|
|
5638
|
+
margin-bottom: -0.2895em;
|
|
5639
|
+
display: table;
|
|
5640
|
+
}
|
|
5641
|
+
&::after {
|
|
5642
|
+
content: "";
|
|
5643
|
+
margin-top: -0.1215em;
|
|
5644
|
+
display: table;
|
|
5645
|
+
}
|
|
5646
|
+
}
|
|
5647
|
+
|
|
5648
|
+
.heading-xxsmall {
|
|
5649
|
+
font-family: var(--font-ftmade);
|
|
5650
|
+
font-size: 20px;
|
|
5651
|
+
line-height: 22px;
|
|
5652
|
+
letter-spacing: -0.22px;
|
|
5653
|
+
|
|
5654
|
+
&::before {
|
|
5655
|
+
content: "";
|
|
5656
|
+
margin-bottom: -0.2895em;
|
|
5657
|
+
display: table;
|
|
5658
|
+
}
|
|
5659
|
+
&::after {
|
|
5660
|
+
content: "";
|
|
5661
|
+
margin-top: -0.1215em;
|
|
5662
|
+
display: table;
|
|
5663
|
+
}
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
/* Body Utilities */
|
|
5667
|
+
.body-large {
|
|
5668
|
+
font-size: 18px;
|
|
5669
|
+
font-style: normal;
|
|
5670
|
+
font-weight: 400;
|
|
5671
|
+
line-height: 25.2px;
|
|
5672
|
+
|
|
5673
|
+
&::before {
|
|
5674
|
+
content: "";
|
|
5675
|
+
margin-bottom: -0.2694em;
|
|
5676
|
+
display: table;
|
|
5677
|
+
}
|
|
5678
|
+
&::after {
|
|
5679
|
+
content: "";
|
|
5680
|
+
margin-top: -0.4444em;
|
|
5681
|
+
display: table;
|
|
5682
|
+
}
|
|
5683
|
+
}
|
|
5684
|
+
|
|
5685
|
+
.body-base {
|
|
5686
|
+
font-size: 16px;
|
|
5687
|
+
font-style: normal;
|
|
5688
|
+
font-weight: 400;
|
|
5689
|
+
line-height: 22.4px;
|
|
5690
|
+
|
|
5691
|
+
&::before {
|
|
5692
|
+
content: "";
|
|
5693
|
+
margin-bottom: -0.2625em;
|
|
5694
|
+
display: table;
|
|
5695
|
+
}
|
|
5696
|
+
&::after {
|
|
5697
|
+
content: "";
|
|
5698
|
+
margin-top: -0.4375em;
|
|
5699
|
+
display: table;
|
|
5700
|
+
}
|
|
5701
|
+
}
|
|
5702
|
+
.body-small {
|
|
5703
|
+
font-size: 14px;
|
|
5704
|
+
font-style: normal;
|
|
5705
|
+
font-weight: 400;
|
|
5706
|
+
line-height: 19.6px;
|
|
5707
|
+
|
|
5708
|
+
&::before {
|
|
5709
|
+
content: "";
|
|
5710
|
+
margin-bottom: -0.2536em;
|
|
5711
|
+
display: table;
|
|
5712
|
+
}
|
|
5713
|
+
&::after {
|
|
5714
|
+
content: "";
|
|
5715
|
+
margin-top: -0.4286em;
|
|
5716
|
+
display: table;
|
|
5717
|
+
}
|
|
5718
|
+
}
|
|
5719
|
+
|
|
5720
|
+
/* Overline Utilities */
|
|
5721
|
+
.overline-large {
|
|
5722
|
+
font-size: 14px;
|
|
5723
|
+
font-style: normal;
|
|
5724
|
+
font-weight: 600;
|
|
5725
|
+
line-height: 14px; /* 100% */
|
|
5726
|
+
letter-spacing: 0.5px;
|
|
5727
|
+
text-transform: uppercase;
|
|
5728
|
+
|
|
5729
|
+
&::before {
|
|
5730
|
+
content: "";
|
|
5731
|
+
margin-bottom: -0.075em;
|
|
5732
|
+
display: table;
|
|
5733
|
+
}
|
|
5734
|
+
&::after {
|
|
5735
|
+
content: "";
|
|
5736
|
+
margin-top: -0.25em;
|
|
5737
|
+
display: table;
|
|
5738
|
+
}
|
|
5739
|
+
}
|
|
5740
|
+
@utility overline-medium {
|
|
5741
|
+
font-size: 12px;
|
|
5742
|
+
font-style: normal;
|
|
5743
|
+
font-weight: 600;
|
|
5744
|
+
line-height: 12px; /* 100% */
|
|
5745
|
+
letter-spacing: 0.5px;
|
|
5746
|
+
text-transform: uppercase;
|
|
5747
|
+
|
|
5748
|
+
&::before {
|
|
5749
|
+
content: "";
|
|
5750
|
+
margin-bottom: -0.075em;
|
|
5751
|
+
display: table;
|
|
5752
|
+
}
|
|
5753
|
+
&::after {
|
|
5754
|
+
content: "";
|
|
5755
|
+
margin-top: -0.25em;
|
|
5756
|
+
display: table;
|
|
5757
|
+
}
|
|
5758
|
+
}
|
|
5759
|
+
@utility overline-small {
|
|
5760
|
+
font-size: 10px;
|
|
5761
|
+
font-style: normal;
|
|
5762
|
+
font-weight: 600;
|
|
5763
|
+
line-height: 10px; /* 100% */
|
|
5764
|
+
letter-spacing: 0.5px;
|
|
5765
|
+
text-transform: uppercase;
|
|
5766
|
+
|
|
5767
|
+
&::before {
|
|
5768
|
+
content: "";
|
|
5769
|
+
margin-bottom: -0.075em;
|
|
5770
|
+
display: table;
|
|
5771
|
+
}
|
|
5772
|
+
&::after {
|
|
5773
|
+
content: "";
|
|
5774
|
+
margin-top: -0.25em;
|
|
5775
|
+
display: table;
|
|
5776
|
+
}
|
|
5777
|
+
}
|
|
5778
|
+
|
|
5779
|
+
/* Number Utilities */
|
|
5780
|
+
.number-large {
|
|
5781
|
+
font-size: 18px;
|
|
5782
|
+
font-style: normal;
|
|
5783
|
+
font-weight: 400;
|
|
5784
|
+
line-height: 25.2px;
|
|
5785
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
5786
|
+
|
|
5787
|
+
&::before {
|
|
5788
|
+
content: "";
|
|
5789
|
+
margin-bottom: -0.2694em;
|
|
5790
|
+
display: table;
|
|
5791
|
+
}
|
|
5792
|
+
&::after {
|
|
5793
|
+
content: "";
|
|
5794
|
+
margin-top: -0.4444em;
|
|
5795
|
+
display: table;
|
|
5796
|
+
}
|
|
5797
|
+
}
|
|
5798
|
+
|
|
5799
|
+
@utility number-base {
|
|
5800
|
+
font-size: 16px;
|
|
5801
|
+
font-style: normal;
|
|
5802
|
+
font-weight: 400;
|
|
5803
|
+
line-height: 22.4px;
|
|
5804
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
5805
|
+
|
|
5806
|
+
&::before {
|
|
5807
|
+
content: "";
|
|
5808
|
+
margin-bottom: -0.2625em;
|
|
5809
|
+
display: table;
|
|
5810
|
+
}
|
|
5811
|
+
&::after {
|
|
5812
|
+
content: "";
|
|
5813
|
+
margin-top: -0.4375em;
|
|
5814
|
+
display: table;
|
|
5815
|
+
}
|
|
5816
|
+
}
|
|
5817
|
+
|
|
5818
|
+
.number-small {
|
|
5819
|
+
font-size: 14px;
|
|
5820
|
+
font-style: normal;
|
|
5821
|
+
font-weight: 400;
|
|
5822
|
+
line-height: 19.6px;
|
|
5823
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
5824
|
+
|
|
5825
|
+
&::before {
|
|
5826
|
+
content: "";
|
|
5827
|
+
margin-bottom: -0.2536em;
|
|
5828
|
+
display: table;
|
|
5829
|
+
}
|
|
5830
|
+
&::after {
|
|
5831
|
+
content: "";
|
|
5832
|
+
margin-top: -0.4286em;
|
|
5833
|
+
display: table;
|
|
5834
|
+
}
|
|
5835
|
+
}
|
|
5836
|
+
.number-xsmall {
|
|
5837
|
+
font-size: 14px;
|
|
5838
|
+
font-style: normal;
|
|
5839
|
+
font-weight: 400;
|
|
5840
|
+
line-height: 16.8px;
|
|
5841
|
+
font-variant-numeric: lining-nums tabular-nums;
|
|
5842
|
+
|
|
5843
|
+
&::before {
|
|
5844
|
+
content: "";
|
|
5845
|
+
margin-bottom: -0.2417em;
|
|
5846
|
+
display: table;
|
|
5847
|
+
}
|
|
5848
|
+
&::after {
|
|
5849
|
+
content: "";
|
|
5850
|
+
margin-top: -0.4167em;
|
|
5851
|
+
display: table;
|
|
5852
|
+
}
|
|
5853
|
+
}
|
|
5854
|
+
|
|
5855
|
+
.underline-dotted {
|
|
5856
|
+
text-decoration-line: underline;
|
|
5857
|
+
text-decoration-style: dotted;
|
|
5858
|
+
text-decoration-skip-ink: none;
|
|
5859
|
+
text-decoration-thickness: 0.75px;
|
|
5860
|
+
text-underline-offset: 2px;
|
|
5861
|
+
}
|
package/client/storybook.css
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
/** @import must precede all other statements */
|
|
2
2
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap")
|
|
3
3
|
layer(base);
|
|
4
|
-
|
|
5
|
-
layer(base);
|
|
4
|
+
|
|
6
5
|
|
|
7
6
|
@import "tailwindcss";
|
|
8
7
|
|
|
@@ -872,293 +871,3 @@ layer(base);
|
|
|
872
871
|
@apply mx-auto max-w-[calc(1072px+64px)] w-full px-8;
|
|
873
872
|
}
|
|
874
873
|
}
|
|
875
|
-
|
|
876
|
-
/* Typography Utilities */
|
|
877
|
-
|
|
878
|
-
/* Heading Utilities */
|
|
879
|
-
@utility heading-large {
|
|
880
|
-
font-family: var(--font-ftmade);
|
|
881
|
-
font-size: 38px;
|
|
882
|
-
line-height: 40px;
|
|
883
|
-
letter-spacing: -0.38px;
|
|
884
|
-
|
|
885
|
-
&::before {
|
|
886
|
-
content: "";
|
|
887
|
-
margin-bottom: -0.2703em;
|
|
888
|
-
display: table;
|
|
889
|
-
}
|
|
890
|
-
&::after {
|
|
891
|
-
content: "";
|
|
892
|
-
margin-top: -0.1023em;
|
|
893
|
-
display: table;
|
|
894
|
-
}
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
@utility heading-medium {
|
|
898
|
-
font-family: var(--font-ftmade);
|
|
899
|
-
font-size: 34px;
|
|
900
|
-
line-height: 36px;
|
|
901
|
-
letter-spacing: -0.34px;
|
|
902
|
-
|
|
903
|
-
&::before {
|
|
904
|
-
content: "";
|
|
905
|
-
margin-bottom: -0.2734em;
|
|
906
|
-
display: table;
|
|
907
|
-
}
|
|
908
|
-
&::after {
|
|
909
|
-
content: "";
|
|
910
|
-
margin-top: -0.1054em;
|
|
911
|
-
display: table;
|
|
912
|
-
}
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
@utility heading-small {
|
|
916
|
-
font-family: var(--font-ftmade);
|
|
917
|
-
font-size: 30px;
|
|
918
|
-
line-height: 32px;
|
|
919
|
-
letter-spacing: -0.3px;
|
|
920
|
-
|
|
921
|
-
&::before {
|
|
922
|
-
content: "";
|
|
923
|
-
margin-bottom: -0.2773em;
|
|
924
|
-
display: table;
|
|
925
|
-
}
|
|
926
|
-
&::after {
|
|
927
|
-
content: "";
|
|
928
|
-
margin-top: -0.1093em;
|
|
929
|
-
display: table;
|
|
930
|
-
}
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
@utility heading-xsmall {
|
|
934
|
-
font-family: var(--font-ftmade);
|
|
935
|
-
font-size: 22px;
|
|
936
|
-
line-height: 24px;
|
|
937
|
-
letter-spacing: -0.22px;
|
|
938
|
-
|
|
939
|
-
&::before {
|
|
940
|
-
content: "";
|
|
941
|
-
margin-bottom: -0.2895em;
|
|
942
|
-
display: table;
|
|
943
|
-
}
|
|
944
|
-
&::after {
|
|
945
|
-
content: "";
|
|
946
|
-
margin-top: -0.1215em;
|
|
947
|
-
display: table;
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
@utility heading-xxsmall {
|
|
952
|
-
font-family: var(--font-ftmade);
|
|
953
|
-
font-size: 20px;
|
|
954
|
-
line-height: 22px;
|
|
955
|
-
letter-spacing: -0.22px;
|
|
956
|
-
|
|
957
|
-
&::before {
|
|
958
|
-
content: "";
|
|
959
|
-
margin-bottom: -0.2895em;
|
|
960
|
-
display: table;
|
|
961
|
-
}
|
|
962
|
-
&::after {
|
|
963
|
-
content: "";
|
|
964
|
-
margin-top: -0.1215em;
|
|
965
|
-
display: table;
|
|
966
|
-
}
|
|
967
|
-
}
|
|
968
|
-
|
|
969
|
-
/* Body Utilities */
|
|
970
|
-
@utility body-large {
|
|
971
|
-
font-size: 18px;
|
|
972
|
-
font-style: normal;
|
|
973
|
-
font-weight: 400;
|
|
974
|
-
line-height: 25.2px;
|
|
975
|
-
|
|
976
|
-
&::before {
|
|
977
|
-
content: "";
|
|
978
|
-
margin-bottom: -0.2694em;
|
|
979
|
-
display: table;
|
|
980
|
-
}
|
|
981
|
-
&::after {
|
|
982
|
-
content: "";
|
|
983
|
-
margin-top: -0.4444em;
|
|
984
|
-
display: table;
|
|
985
|
-
}
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
@utility body-base {
|
|
989
|
-
font-size: 16px;
|
|
990
|
-
font-style: normal;
|
|
991
|
-
font-weight: 400;
|
|
992
|
-
line-height: 22.4px;
|
|
993
|
-
|
|
994
|
-
&::before {
|
|
995
|
-
content: "";
|
|
996
|
-
margin-bottom: -0.2625em;
|
|
997
|
-
display: table;
|
|
998
|
-
}
|
|
999
|
-
&::after {
|
|
1000
|
-
content: "";
|
|
1001
|
-
margin-top: -0.4375em;
|
|
1002
|
-
display: table;
|
|
1003
|
-
}
|
|
1004
|
-
}
|
|
1005
|
-
@utility body-small {
|
|
1006
|
-
font-size: 14px;
|
|
1007
|
-
font-style: normal;
|
|
1008
|
-
font-weight: 400;
|
|
1009
|
-
line-height: 19.6px;
|
|
1010
|
-
|
|
1011
|
-
&::before {
|
|
1012
|
-
content: "";
|
|
1013
|
-
margin-bottom: -0.2536em;
|
|
1014
|
-
display: table;
|
|
1015
|
-
}
|
|
1016
|
-
&::after {
|
|
1017
|
-
content: "";
|
|
1018
|
-
margin-top: -0.4286em;
|
|
1019
|
-
display: table;
|
|
1020
|
-
}
|
|
1021
|
-
}
|
|
1022
|
-
|
|
1023
|
-
/* Overline Utilities */
|
|
1024
|
-
@utility overline-large {
|
|
1025
|
-
font-size: 14px;
|
|
1026
|
-
font-style: normal;
|
|
1027
|
-
font-weight: 600;
|
|
1028
|
-
line-height: 14px; /* 100% */
|
|
1029
|
-
letter-spacing: 0.5px;
|
|
1030
|
-
text-transform: uppercase;
|
|
1031
|
-
|
|
1032
|
-
&::before {
|
|
1033
|
-
content: "";
|
|
1034
|
-
margin-bottom: -0.075em;
|
|
1035
|
-
display: table;
|
|
1036
|
-
}
|
|
1037
|
-
&::after {
|
|
1038
|
-
content: "";
|
|
1039
|
-
margin-top: -0.25em;
|
|
1040
|
-
display: table;
|
|
1041
|
-
}
|
|
1042
|
-
}
|
|
1043
|
-
@utility overline-medium {
|
|
1044
|
-
font-size: 12px;
|
|
1045
|
-
font-style: normal;
|
|
1046
|
-
font-weight: 600;
|
|
1047
|
-
line-height: 12px; /* 100% */
|
|
1048
|
-
letter-spacing: 0.5px;
|
|
1049
|
-
text-transform: uppercase;
|
|
1050
|
-
|
|
1051
|
-
&::before {
|
|
1052
|
-
content: "";
|
|
1053
|
-
margin-bottom: -0.075em;
|
|
1054
|
-
display: table;
|
|
1055
|
-
}
|
|
1056
|
-
&::after {
|
|
1057
|
-
content: "";
|
|
1058
|
-
margin-top: -0.25em;
|
|
1059
|
-
display: table;
|
|
1060
|
-
}
|
|
1061
|
-
}
|
|
1062
|
-
@utility overline-small {
|
|
1063
|
-
font-size: 10px;
|
|
1064
|
-
font-style: normal;
|
|
1065
|
-
font-weight: 600;
|
|
1066
|
-
line-height: 10px; /* 100% */
|
|
1067
|
-
letter-spacing: 0.5px;
|
|
1068
|
-
text-transform: uppercase;
|
|
1069
|
-
|
|
1070
|
-
&::before {
|
|
1071
|
-
content: "";
|
|
1072
|
-
margin-bottom: -0.075em;
|
|
1073
|
-
display: table;
|
|
1074
|
-
}
|
|
1075
|
-
&::after {
|
|
1076
|
-
content: "";
|
|
1077
|
-
margin-top: -0.25em;
|
|
1078
|
-
display: table;
|
|
1079
|
-
}
|
|
1080
|
-
}
|
|
1081
|
-
|
|
1082
|
-
/* Number Utilities */
|
|
1083
|
-
@utility number-large {
|
|
1084
|
-
font-size: 18px;
|
|
1085
|
-
font-style: normal;
|
|
1086
|
-
font-weight: 400;
|
|
1087
|
-
line-height: 25.2px;
|
|
1088
|
-
font-variant-numeric: lining-nums tabular-nums;
|
|
1089
|
-
|
|
1090
|
-
&::before {
|
|
1091
|
-
content: "";
|
|
1092
|
-
margin-bottom: -0.2694em;
|
|
1093
|
-
display: table;
|
|
1094
|
-
}
|
|
1095
|
-
&::after {
|
|
1096
|
-
content: "";
|
|
1097
|
-
margin-top: -0.4444em;
|
|
1098
|
-
display: table;
|
|
1099
|
-
}
|
|
1100
|
-
}
|
|
1101
|
-
|
|
1102
|
-
@utility number-base {
|
|
1103
|
-
font-size: 16px;
|
|
1104
|
-
font-style: normal;
|
|
1105
|
-
font-weight: 400;
|
|
1106
|
-
line-height: 22.4px;
|
|
1107
|
-
font-variant-numeric: lining-nums tabular-nums;
|
|
1108
|
-
|
|
1109
|
-
&::before {
|
|
1110
|
-
content: "";
|
|
1111
|
-
margin-bottom: -0.2625em;
|
|
1112
|
-
display: table;
|
|
1113
|
-
}
|
|
1114
|
-
&::after {
|
|
1115
|
-
content: "";
|
|
1116
|
-
margin-top: -0.4375em;
|
|
1117
|
-
display: table;
|
|
1118
|
-
}
|
|
1119
|
-
}
|
|
1120
|
-
|
|
1121
|
-
@utility number-small {
|
|
1122
|
-
font-size: 14px;
|
|
1123
|
-
font-style: normal;
|
|
1124
|
-
font-weight: 400;
|
|
1125
|
-
line-height: 19.6px;
|
|
1126
|
-
font-variant-numeric: lining-nums tabular-nums;
|
|
1127
|
-
|
|
1128
|
-
&::before {
|
|
1129
|
-
content: "";
|
|
1130
|
-
margin-bottom: -0.2536em;
|
|
1131
|
-
display: table;
|
|
1132
|
-
}
|
|
1133
|
-
&::after {
|
|
1134
|
-
content: "";
|
|
1135
|
-
margin-top: -0.4286em;
|
|
1136
|
-
display: table;
|
|
1137
|
-
}
|
|
1138
|
-
}
|
|
1139
|
-
@utility number-xsmall {
|
|
1140
|
-
font-size: 14px;
|
|
1141
|
-
font-style: normal;
|
|
1142
|
-
font-weight: 400;
|
|
1143
|
-
line-height: 16.8px;
|
|
1144
|
-
font-variant-numeric: lining-nums tabular-nums;
|
|
1145
|
-
|
|
1146
|
-
&::before {
|
|
1147
|
-
content: "";
|
|
1148
|
-
margin-bottom: -0.2417em;
|
|
1149
|
-
display: table;
|
|
1150
|
-
}
|
|
1151
|
-
&::after {
|
|
1152
|
-
content: "";
|
|
1153
|
-
margin-top: -0.4167em;
|
|
1154
|
-
display: table;
|
|
1155
|
-
}
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
@utility underline-dotted {
|
|
1159
|
-
text-decoration-line: underline;
|
|
1160
|
-
text-decoration-style: dotted;
|
|
1161
|
-
text-decoration-skip-ink: none;
|
|
1162
|
-
text-decoration-thickness: 0.75px;
|
|
1163
|
-
text-underline-offset: 2px;
|
|
1164
|
-
}
|