@djb25/digit-ui-css 1.0.69 → 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 +7 -2
- package/src/components/card.scss +172 -63
- package/src/components/reportDownload.scss +104 -0
- package/src/components/reusableClasses.scss +141 -0
- package/src/components/selectdropdown.scss +7 -1
- package/src/components/textfields.scss +5 -14
- package/src/components/topbar.scss +0 -5
- package/src/digitv2/components/FormComposerV2.scss +0 -10
- package/src/index.scss +2 -125
- package/src/pages/employee/cardfix.scss +8 -12
- package/src/pages/employee/inbox.scss +5 -3
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";
|
|
@@ -121,6 +122,7 @@
|
|
|
121
122
|
@import "./components/EkycAssign.scss";
|
|
122
123
|
@import "./pages/employee/hrms.scss";
|
|
123
124
|
@import "./pages/employee/userProfile.scss";
|
|
125
|
+
@import "./components/reportDownload.scss";
|
|
124
126
|
|
|
125
127
|
.display-none {
|
|
126
128
|
display: none;
|
|
@@ -140,70 +142,6 @@ h6 {
|
|
|
140
142
|
font-weight: inherit;
|
|
141
143
|
}
|
|
142
144
|
|
|
143
|
-
.flex-one {
|
|
144
|
-
@apply flex-1;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.flex-roww {
|
|
148
|
-
display: flex;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
.display-flex-gap-2 {
|
|
152
|
-
@apply flex gap-3;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
.rm-mb {
|
|
156
|
-
margin-bottom: unset !important;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.w-fullwidth {
|
|
160
|
-
@apply w-full;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.margin-unset {
|
|
164
|
-
margin: unset !important;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.text-align-center {
|
|
168
|
-
@apply text-center;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.desktop-only {
|
|
172
|
-
@apply hidden;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
@screen dt {
|
|
176
|
-
.desktop-only {
|
|
177
|
-
@apply block;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.mobile-only {
|
|
182
|
-
@apply block;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
@screen dt {
|
|
186
|
-
.mobile-only {
|
|
187
|
-
@apply hidden;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.dark {
|
|
192
|
-
@apply text-text-primary;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.mrlg {
|
|
196
|
-
@apply mr-lg;
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
.mrsm {
|
|
200
|
-
@apply mr-sm;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.mbsm {
|
|
204
|
-
@apply mb-sm;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
145
|
.home-link {
|
|
208
146
|
margin-left: 16px;
|
|
209
147
|
margin-bottom: 16px;
|
|
@@ -907,67 +845,6 @@ input[type="number"] {
|
|
|
907
845
|
margin-top: 90px;
|
|
908
846
|
}
|
|
909
847
|
|
|
910
|
-
.flex-box {
|
|
911
|
-
display: flex;
|
|
912
|
-
width: 100%;
|
|
913
|
-
height: 100%;
|
|
914
|
-
max-width: 100%;
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
.flex-box-center {
|
|
918
|
-
display: flex;
|
|
919
|
-
justify-content: center;
|
|
920
|
-
align-items: center;
|
|
921
|
-
width: 100%;
|
|
922
|
-
height: 100%;
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
.flex-box-col {
|
|
926
|
-
flex-direction: column;
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
.flex-box-content-between {
|
|
930
|
-
display: flex;
|
|
931
|
-
justify-content: space-between;
|
|
932
|
-
align-items: center;
|
|
933
|
-
width: 100%;
|
|
934
|
-
height: 100%;
|
|
935
|
-
}
|
|
936
|
-
|
|
937
|
-
.flex-center {
|
|
938
|
-
display: flex;
|
|
939
|
-
justify-content: center;
|
|
940
|
-
align-items: center;
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
.flex-gap-1 {
|
|
944
|
-
gap: 4px;
|
|
945
|
-
}
|
|
946
|
-
|
|
947
|
-
.flex-gap-2 {
|
|
948
|
-
gap: 8px;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
.flex-gap-3 {
|
|
952
|
-
gap: 12px;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
.flex-gap-4 {
|
|
956
|
-
gap: 16px;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
.flex-gap-5 {
|
|
960
|
-
gap: 20px;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
.bc-white {
|
|
964
|
-
background-color: #fff;
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
.round-medium {
|
|
968
|
-
border-radius: 6px;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
848
|
.rdrDateDisplayItem {
|
|
972
849
|
input[readonly] {
|
|
973
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
|
+
}
|
|
@@ -798,9 +798,11 @@
|
|
|
798
798
|
border-radius: 6px;
|
|
799
799
|
|
|
800
800
|
.card-head {
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
801
|
+
@apply flex justify-between items-center;
|
|
802
|
+
margin-bottom: 10px;
|
|
803
|
+
h2 {
|
|
804
|
+
@apply text-heading-m font-bold;
|
|
805
|
+
}
|
|
804
806
|
}
|
|
805
807
|
|
|
806
808
|
h2 {
|