@djb25/digit-ui-css 1.0.70 → 1.0.71
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/dist/index.css +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/SearchForm.scss +6 -0
- package/src/components/card.scss +172 -63
- package/src/components/reusableClasses.scss +141 -0
- package/src/components/textfields.scss +3 -1
- package/src/components/topbar.scss +0 -5
- package/src/index.scss +1 -125
- package/src/pages/employee/cardfix.scss +8 -12
package/package.json
CHANGED
package/src/components/card.scss
CHANGED
|
@@ -65,6 +65,10 @@
|
|
|
65
65
|
min-height: 100%;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
+
.no-box-shadow {
|
|
69
|
+
box-shadow: none !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
68
72
|
.employeeCard {
|
|
69
73
|
@apply bg-white shadow-card p-md;
|
|
70
74
|
border-radius: 6px;
|
|
@@ -629,19 +633,38 @@
|
|
|
629
633
|
|
|
630
634
|
/* ── KPI TILES GRID ─────────────────────────────────────── */
|
|
631
635
|
@keyframes countPop {
|
|
632
|
-
0%
|
|
633
|
-
|
|
634
|
-
|
|
636
|
+
0% {
|
|
637
|
+
transform: scale(0.6) translateY(6px);
|
|
638
|
+
opacity: 0;
|
|
639
|
+
}
|
|
640
|
+
50% {
|
|
641
|
+
transform: scale(1.06) translateY(-2px);
|
|
642
|
+
opacity: 1;
|
|
643
|
+
}
|
|
644
|
+
100% {
|
|
645
|
+
transform: scale(1) translateY(0);
|
|
646
|
+
}
|
|
635
647
|
}
|
|
636
648
|
|
|
637
649
|
@keyframes shimmer {
|
|
638
|
-
0%
|
|
639
|
-
|
|
650
|
+
0% {
|
|
651
|
+
left: -100%;
|
|
652
|
+
}
|
|
653
|
+
100% {
|
|
654
|
+
left: 200%;
|
|
655
|
+
}
|
|
640
656
|
}
|
|
641
657
|
|
|
642
658
|
@keyframes pulseGlow {
|
|
643
|
-
0%,
|
|
644
|
-
|
|
659
|
+
0%,
|
|
660
|
+
100% {
|
|
661
|
+
opacity: 0.45;
|
|
662
|
+
transform: translate(-50%, -50%) scale(1);
|
|
663
|
+
}
|
|
664
|
+
50% {
|
|
665
|
+
opacity: 0.7;
|
|
666
|
+
transform: translate(-50%, -50%) scale(1.15);
|
|
667
|
+
}
|
|
645
668
|
}
|
|
646
669
|
|
|
647
670
|
.kpi-tiles-grid {
|
|
@@ -663,22 +686,16 @@
|
|
|
663
686
|
backdrop-filter: blur(12px);
|
|
664
687
|
-webkit-backdrop-filter: blur(12px);
|
|
665
688
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
666
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
|
|
667
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.8);
|
|
689
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
|
|
668
690
|
text-align: center;
|
|
669
691
|
overflow: hidden;
|
|
670
|
-
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
|
|
671
|
-
box-shadow 0.3s ease,
|
|
672
|
-
border-color 0.3s ease,
|
|
673
|
-
background 0.3s ease;
|
|
692
|
+
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
|
|
674
693
|
cursor: pointer;
|
|
675
694
|
}
|
|
676
695
|
|
|
677
696
|
.kpi-tile:hover {
|
|
678
697
|
transform: translateY(-4px) scale(1.02);
|
|
679
|
-
box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12),
|
|
680
|
-
0 2px 6px rgba(0, 0, 0, 0.04),
|
|
681
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.9);
|
|
698
|
+
box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
|
|
682
699
|
border-color: rgba(200, 200, 220, 0.6);
|
|
683
700
|
}
|
|
684
701
|
|
|
@@ -690,12 +707,7 @@
|
|
|
690
707
|
left: -100%;
|
|
691
708
|
width: 60%;
|
|
692
709
|
height: 100%;
|
|
693
|
-
background: linear-gradient(
|
|
694
|
-
90deg,
|
|
695
|
-
transparent 0%,
|
|
696
|
-
rgba(255, 255, 255, 0.4) 50%,
|
|
697
|
-
transparent 100%
|
|
698
|
-
);
|
|
710
|
+
background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
|
|
699
711
|
transition: none;
|
|
700
712
|
pointer-events: none;
|
|
701
713
|
}
|
|
@@ -721,14 +733,38 @@
|
|
|
721
733
|
}
|
|
722
734
|
|
|
723
735
|
/* Color-coded dots per module */
|
|
724
|
-
.kpi-tile--icon-blue
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
.kpi-tile--icon-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
736
|
+
.kpi-tile--icon-blue .kpi-tile__accent {
|
|
737
|
+
background: #0ea5e9;
|
|
738
|
+
box-shadow: 0 0 6px rgba(14, 165, 233, 0.4);
|
|
739
|
+
}
|
|
740
|
+
.kpi-tile--icon-purple .kpi-tile__accent {
|
|
741
|
+
background: #8b5cf6;
|
|
742
|
+
box-shadow: 0 0 6px rgba(139, 92, 246, 0.4);
|
|
743
|
+
}
|
|
744
|
+
.kpi-tile--icon-orange .kpi-tile__accent {
|
|
745
|
+
background: #f97316;
|
|
746
|
+
box-shadow: 0 0 6px rgba(249, 115, 22, 0.4);
|
|
747
|
+
}
|
|
748
|
+
.kpi-tile--icon-green .kpi-tile__accent {
|
|
749
|
+
background: #22c55e;
|
|
750
|
+
box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
|
|
751
|
+
}
|
|
752
|
+
.kpi-tile--icon-brown .kpi-tile__accent {
|
|
753
|
+
background: #eab308;
|
|
754
|
+
box-shadow: 0 0 6px rgba(234, 179, 8, 0.4);
|
|
755
|
+
}
|
|
756
|
+
.kpi-tile--icon-violet .kpi-tile__accent {
|
|
757
|
+
background: #7c3aed;
|
|
758
|
+
box-shadow: 0 0 6px rgba(124, 58, 237, 0.4);
|
|
759
|
+
}
|
|
760
|
+
.kpi-tile--icon-teal .kpi-tile__accent {
|
|
761
|
+
background: #14b8a6;
|
|
762
|
+
box-shadow: 0 0 6px rgba(20, 184, 166, 0.4);
|
|
763
|
+
}
|
|
764
|
+
.kpi-tile--icon-default .kpi-tile__accent {
|
|
765
|
+
background: #64748b;
|
|
766
|
+
box-shadow: 0 0 6px rgba(100, 116, 139, 0.4);
|
|
767
|
+
}
|
|
732
768
|
|
|
733
769
|
/* ── Label ── */
|
|
734
770
|
.kpi-tile__label {
|
|
@@ -777,32 +813,83 @@
|
|
|
777
813
|
}
|
|
778
814
|
|
|
779
815
|
/* Color-coded glow per module */
|
|
780
|
-
.kpi-tile--icon-blue
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
.kpi-tile--icon-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
.kpi-tile--icon-
|
|
787
|
-
|
|
816
|
+
.kpi-tile--icon-blue .kpi-tile__count::before {
|
|
817
|
+
background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
|
|
818
|
+
}
|
|
819
|
+
.kpi-tile--icon-purple .kpi-tile__count::before {
|
|
820
|
+
background: radial-gradient(circle, #c4b5fd 0%, transparent 70%);
|
|
821
|
+
}
|
|
822
|
+
.kpi-tile--icon-orange .kpi-tile__count::before {
|
|
823
|
+
background: radial-gradient(circle, #fdba74 0%, transparent 70%);
|
|
824
|
+
}
|
|
825
|
+
.kpi-tile--icon-green .kpi-tile__count::before {
|
|
826
|
+
background: radial-gradient(circle, #86efac 0%, transparent 70%);
|
|
827
|
+
}
|
|
828
|
+
.kpi-tile--icon-brown .kpi-tile__count::before {
|
|
829
|
+
background: radial-gradient(circle, #fde68a 0%, transparent 70%);
|
|
830
|
+
}
|
|
831
|
+
.kpi-tile--icon-violet .kpi-tile__count::before {
|
|
832
|
+
background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
|
|
833
|
+
}
|
|
834
|
+
.kpi-tile--icon-teal .kpi-tile__count::before {
|
|
835
|
+
background: radial-gradient(circle, #5eead4 0%, transparent 70%);
|
|
836
|
+
}
|
|
837
|
+
.kpi-tile--icon-default .kpi-tile__count::before {
|
|
838
|
+
background: radial-gradient(circle, #cbd5e1 0%, transparent 70%);
|
|
839
|
+
}
|
|
788
840
|
|
|
789
841
|
/* Count color on hover */
|
|
790
|
-
.kpi-tile--icon-blue:hover
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
.kpi-tile--icon-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
.kpi-tile--icon-
|
|
842
|
+
.kpi-tile--icon-blue:hover .kpi-tile__count {
|
|
843
|
+
color: #0369a1;
|
|
844
|
+
}
|
|
845
|
+
.kpi-tile--icon-purple:hover .kpi-tile__count {
|
|
846
|
+
color: #6d28d9;
|
|
847
|
+
}
|
|
848
|
+
.kpi-tile--icon-orange:hover .kpi-tile__count {
|
|
849
|
+
color: #c2410c;
|
|
850
|
+
}
|
|
851
|
+
.kpi-tile--icon-green:hover .kpi-tile__count {
|
|
852
|
+
color: #15803d;
|
|
853
|
+
}
|
|
854
|
+
.kpi-tile--icon-brown:hover .kpi-tile__count {
|
|
855
|
+
color: #a16207;
|
|
856
|
+
}
|
|
857
|
+
.kpi-tile--icon-violet:hover .kpi-tile__count {
|
|
858
|
+
color: #5b21b6;
|
|
859
|
+
}
|
|
860
|
+
.kpi-tile--icon-teal:hover .kpi-tile__count {
|
|
861
|
+
color: #0f766e;
|
|
862
|
+
}
|
|
797
863
|
|
|
798
864
|
/* Subtle bg tint on hover per color */
|
|
799
|
-
.kpi-tile--icon-blue:hover
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
.kpi-tile--icon-
|
|
804
|
-
|
|
805
|
-
|
|
865
|
+
.kpi-tile--icon-blue:hover {
|
|
866
|
+
background: rgba(240, 249, 255, 0.85);
|
|
867
|
+
border-color: rgba(56, 189, 248, 0.25);
|
|
868
|
+
}
|
|
869
|
+
.kpi-tile--icon-purple:hover {
|
|
870
|
+
background: rgba(250, 245, 255, 0.85);
|
|
871
|
+
border-color: rgba(192, 132, 252, 0.25);
|
|
872
|
+
}
|
|
873
|
+
.kpi-tile--icon-orange:hover {
|
|
874
|
+
background: rgba(255, 247, 237, 0.85);
|
|
875
|
+
border-color: rgba(251, 146, 60, 0.25);
|
|
876
|
+
}
|
|
877
|
+
.kpi-tile--icon-green:hover {
|
|
878
|
+
background: rgba(240, 253, 244, 0.85);
|
|
879
|
+
border-color: rgba(74, 222, 128, 0.25);
|
|
880
|
+
}
|
|
881
|
+
.kpi-tile--icon-brown:hover {
|
|
882
|
+
background: rgba(255, 251, 235, 0.85);
|
|
883
|
+
border-color: rgba(251, 191, 36, 0.25);
|
|
884
|
+
}
|
|
885
|
+
.kpi-tile--icon-violet:hover {
|
|
886
|
+
background: rgba(245, 243, 255, 0.85);
|
|
887
|
+
border-color: rgba(167, 139, 250, 0.25);
|
|
888
|
+
}
|
|
889
|
+
.kpi-tile--icon-teal:hover {
|
|
890
|
+
background: rgba(240, 253, 250, 0.85);
|
|
891
|
+
border-color: rgba(45, 212, 191, 0.25);
|
|
892
|
+
}
|
|
806
893
|
|
|
807
894
|
/* ── LEGACY: kept for backwards-compat if referenced elsewhere ── */
|
|
808
895
|
.card-body-row {
|
|
@@ -811,17 +898,39 @@
|
|
|
811
898
|
align-items: center;
|
|
812
899
|
}
|
|
813
900
|
|
|
814
|
-
.main-kpi-section {
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
.main-kpi-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
.
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
.
|
|
824
|
-
|
|
901
|
+
.main-kpi-section {
|
|
902
|
+
display: none;
|
|
903
|
+
}
|
|
904
|
+
.main-kpi-number {
|
|
905
|
+
display: none;
|
|
906
|
+
}
|
|
907
|
+
.main-kpi-label-wrap {
|
|
908
|
+
display: none;
|
|
909
|
+
}
|
|
910
|
+
.main-kpi-label {
|
|
911
|
+
display: none;
|
|
912
|
+
}
|
|
913
|
+
.secondary-kpi-section {
|
|
914
|
+
display: none;
|
|
915
|
+
}
|
|
916
|
+
.secondary-kpi-item {
|
|
917
|
+
display: none;
|
|
918
|
+
}
|
|
919
|
+
.sec-kpi-label {
|
|
920
|
+
display: none;
|
|
921
|
+
}
|
|
922
|
+
.sec-kpi-value {
|
|
923
|
+
display: none;
|
|
924
|
+
}
|
|
925
|
+
.sec-kpi-dot {
|
|
926
|
+
display: none;
|
|
927
|
+
}
|
|
928
|
+
.sec-kpi-header {
|
|
929
|
+
display: none;
|
|
930
|
+
}
|
|
931
|
+
.trend-icon {
|
|
932
|
+
display: none;
|
|
933
|
+
}
|
|
825
934
|
|
|
826
935
|
.card-footer-row {
|
|
827
936
|
display: flex;
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
.flex-one {
|
|
2
|
+
@apply flex-1;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.flex-roww {
|
|
6
|
+
display: flex;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.display-flex-gap-2 {
|
|
10
|
+
@apply flex gap-3;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.rm-mb {
|
|
14
|
+
margin-bottom: unset !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.w-fullwidth {
|
|
18
|
+
@apply w-full;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.margin-unset {
|
|
22
|
+
margin: unset !important;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.text-align-center {
|
|
26
|
+
@apply text-center;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.desktop-only {
|
|
30
|
+
@apply hidden;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@screen dt {
|
|
34
|
+
.desktop-only {
|
|
35
|
+
@apply block;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.mobile-only {
|
|
40
|
+
@apply block;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@screen dt {
|
|
44
|
+
.mobile-only {
|
|
45
|
+
@apply hidden;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.dark {
|
|
50
|
+
@apply text-text-primary;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.mrlg {
|
|
54
|
+
@apply mr-lg;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.mrsm {
|
|
58
|
+
@apply mr-sm;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.mbsm {
|
|
62
|
+
@apply mb-sm;
|
|
63
|
+
}
|
|
64
|
+
.flex-right {
|
|
65
|
+
@apply flex items-center justify-end;
|
|
66
|
+
min-width: 85px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.flex-fit {
|
|
70
|
+
@apply flex w-full border-b border-solid border-border;
|
|
71
|
+
padding: 8px 10px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.flex-box {
|
|
75
|
+
display: flex;
|
|
76
|
+
width: 100%;
|
|
77
|
+
height: 100%;
|
|
78
|
+
max-width: 100%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.flex-box-center {
|
|
82
|
+
display: flex;
|
|
83
|
+
justify-content: center;
|
|
84
|
+
align-items: center;
|
|
85
|
+
width: 100%;
|
|
86
|
+
height: 100%;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.flex-box-col {
|
|
90
|
+
flex-direction: column;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.flex-box-content-between {
|
|
94
|
+
display: flex;
|
|
95
|
+
justify-content: space-between;
|
|
96
|
+
align-items: center;
|
|
97
|
+
width: 100%;
|
|
98
|
+
height: 100%;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.flex-center {
|
|
102
|
+
display: flex;
|
|
103
|
+
justify-content: center;
|
|
104
|
+
align-items: center;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.flex-gap-1 {
|
|
108
|
+
gap: 4px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.flex-gap-2 {
|
|
112
|
+
gap: 8px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.flex-gap-3 {
|
|
116
|
+
gap: 12px;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.flex-gap-4 {
|
|
120
|
+
gap: 16px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.flex-gap-5 {
|
|
124
|
+
gap: 20px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.bc-white {
|
|
128
|
+
background-color: #fff;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.round-medium {
|
|
132
|
+
border-radius: 6px;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.p-top-0 {
|
|
136
|
+
padding-top: 0;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.not-allowed {
|
|
140
|
+
cursor: not-allowed;
|
|
141
|
+
}
|
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.employee-card-input:disabled {
|
|
18
|
-
@apply
|
|
18
|
+
@apply text-grey-dark !important;
|
|
19
|
+
border: 2px solid #e5e5e7;
|
|
19
20
|
pointer-events: none !important;
|
|
21
|
+
cursor: not-allowed;
|
|
20
22
|
@extend .light-input-border;
|
|
21
23
|
@extend .light-text-color-disabled;
|
|
22
24
|
}
|
package/src/index.scss
CHANGED
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
@import "./components/plusMinus.scss";
|
|
84
84
|
@import "./components/financeUi.scss";
|
|
85
85
|
@import "./components/landingpage.scss";
|
|
86
|
+
@import "./components/reusableClasses.scss";
|
|
86
87
|
|
|
87
88
|
@import "./pages/employee/index.scss";
|
|
88
89
|
@import "./pages/employee/cardfix.scss";
|
|
@@ -141,70 +142,6 @@ h6 {
|
|
|
141
142
|
font-weight: inherit;
|
|
142
143
|
}
|
|
143
144
|
|
|
144
|
-
.flex-one {
|
|
145
|
-
@apply flex-1;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.flex-roww {
|
|
149
|
-
display: flex;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.display-flex-gap-2 {
|
|
153
|
-
@apply flex gap-3;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.rm-mb {
|
|
157
|
-
margin-bottom: unset !important;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.w-fullwidth {
|
|
161
|
-
@apply w-full;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
.margin-unset {
|
|
165
|
-
margin: unset !important;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
.text-align-center {
|
|
169
|
-
@apply text-center;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.desktop-only {
|
|
173
|
-
@apply hidden;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
@screen dt {
|
|
177
|
-
.desktop-only {
|
|
178
|
-
@apply block;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.mobile-only {
|
|
183
|
-
@apply block;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
@screen dt {
|
|
187
|
-
.mobile-only {
|
|
188
|
-
@apply hidden;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.dark {
|
|
193
|
-
@apply text-text-primary;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
.mrlg {
|
|
197
|
-
@apply mr-lg;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.mrsm {
|
|
201
|
-
@apply mr-sm;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.mbsm {
|
|
205
|
-
@apply mb-sm;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
145
|
.home-link {
|
|
209
146
|
margin-left: 16px;
|
|
210
147
|
margin-bottom: 16px;
|
|
@@ -908,67 +845,6 @@ input[type="number"] {
|
|
|
908
845
|
margin-top: 90px;
|
|
909
846
|
}
|
|
910
847
|
|
|
911
|
-
.flex-box {
|
|
912
|
-
display: flex;
|
|
913
|
-
width: 100%;
|
|
914
|
-
height: 100%;
|
|
915
|
-
max-width: 100%;
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
.flex-box-center {
|
|
919
|
-
display: flex;
|
|
920
|
-
justify-content: center;
|
|
921
|
-
align-items: center;
|
|
922
|
-
width: 100%;
|
|
923
|
-
height: 100%;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.flex-box-col {
|
|
927
|
-
flex-direction: column;
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
.flex-box-content-between {
|
|
931
|
-
display: flex;
|
|
932
|
-
justify-content: space-between;
|
|
933
|
-
align-items: center;
|
|
934
|
-
width: 100%;
|
|
935
|
-
height: 100%;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
.flex-center {
|
|
939
|
-
display: flex;
|
|
940
|
-
justify-content: center;
|
|
941
|
-
align-items: center;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
.flex-gap-1 {
|
|
945
|
-
gap: 4px;
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
.flex-gap-2 {
|
|
949
|
-
gap: 8px;
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
.flex-gap-3 {
|
|
953
|
-
gap: 12px;
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
.flex-gap-4 {
|
|
957
|
-
gap: 16px;
|
|
958
|
-
}
|
|
959
|
-
|
|
960
|
-
.flex-gap-5 {
|
|
961
|
-
gap: 20px;
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
.bc-white {
|
|
965
|
-
background-color: #fff;
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
.round-medium {
|
|
969
|
-
border-radius: 6px;
|
|
970
|
-
}
|
|
971
|
-
|
|
972
848
|
.rdrDateDisplayItem {
|
|
973
849
|
input[readonly] {
|
|
974
850
|
border-radius: 4px;
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
div{
|
|
8
|
-
@apply text-link;
|
|
9
|
-
span{
|
|
10
|
-
@apply text-link font-bold;
|
|
11
|
-
}
|
|
1
|
+
.card-count {
|
|
2
|
+
@apply pr-xl;
|
|
3
|
+
div {
|
|
4
|
+
@apply text-link;
|
|
5
|
+
span {
|
|
6
|
+
@apply text-link font-bold;
|
|
12
7
|
}
|
|
13
|
-
}
|
|
8
|
+
}
|
|
9
|
+
}
|