@egovernments/digit-ui-components-css 0.0.2-beta.11 → 0.0.2-beta.12
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/CHANGELOG.md +88 -88
- package/README.md +80 -80
- package/package.json +69 -69
- package/src/digitv2/components/FormComposerV2.scss +118 -118
- package/src/digitv2/components/actionbarV2.scss +206 -206
- package/src/digitv2/components/backLinkV2.scss +36 -36
- package/src/digitv2/components/bodyContainerV2.scss +39 -39
- package/src/digitv2/components/breadcrumbV2.scss +56 -56
- package/src/digitv2/components/buttonsV2.scss +451 -451
- package/src/digitv2/components/cardV2.scss +497 -497
- package/src/digitv2/components/cardbasedoptionsV2.scss +46 -46
- package/src/digitv2/components/cardlabelV2.scss +7 -7
- package/src/digitv2/components/checkboxV2.scss +83 -83
- package/src/digitv2/components/chipV2.scss +129 -129
- package/src/digitv2/components/dividerV2.scss +10 -10
- package/src/digitv2/components/errorMessageV2.scss +20 -20
- package/src/digitv2/components/fieldV1.scss +96 -96
- package/src/digitv2/components/headerdropdownV2.scss +151 -151
- package/src/digitv2/components/infoCardV2.scss +139 -139
- package/src/digitv2/components/infobuttonV2.scss +75 -75
- package/src/digitv2/components/labelFieldPairV2.scss +66 -66
- package/src/digitv2/components/mobileNumberV2.scss +65 -65
- package/src/digitv2/components/multiSelectDropdownV2.scss +315 -315
- package/src/digitv2/components/panelCardV2.scss +160 -160
- package/src/digitv2/components/panelV2.scss +114 -114
- package/src/digitv2/components/popUpV2.scss +330 -330
- package/src/digitv2/components/radiobtnV2.scss +115 -115
- package/src/digitv2/components/selectDropdownV2.scss +364 -364
- package/src/digitv2/components/stepperV2.scss +147 -147
- package/src/digitv2/components/textInputV2.scss +462 -462
- package/src/digitv2/components/textareaV2.scss +99 -99
- package/src/digitv2/components/textblockV2.scss +46 -46
- package/src/digitv2/components/timelineV2.scss +170 -170
- package/src/digitv2/components/toastV2.scss +80 -80
- package/src/digitv2/components/toggleV2.scss +72 -72
- package/src/digitv2/components/topbarV2.scss +387 -387
- package/src/digitv2/components/treeSelectV2.scss +132 -132
- package/src/digitv2/components/uploaderV2.scss +556 -556
- package/src/digitv2/components/viewCardFieldPairV2.scss +44 -44
- package/src/digitv2/index.scss +169 -169
- package/src/digitv2/pages/employee/index.scss +1 -1
- package/src/digitv2/pages/employee/workbench.scss +615 -615
- package/src/digitv2/typography.scss +638 -638
- package/src/index.scss +681 -681
- package/src/pages/employee/index.scss +625 -625
- package/src/pages/employee/login.scss +220 -220
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
@import url("../index.scss");
|
|
2
|
-
@import url("../typography.scss");
|
|
3
|
-
|
|
4
|
-
.digit-mobile-number-container {
|
|
5
|
-
@apply flex items-center;
|
|
6
|
-
width: 100%;
|
|
7
|
-
|
|
8
|
-
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
|
|
9
|
-
/* Media query for tablets */
|
|
10
|
-
max-width: 27.5rem;
|
|
11
|
-
min-width: 12.5rem;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
@media (max-aspect-ratio: 9/16) {
|
|
15
|
-
/* Media query for mobile */
|
|
16
|
-
max-width:100%;
|
|
17
|
-
min-width: 9.75rem;
|
|
18
|
-
width: 100%;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@media (min-aspect-ratio: 3/4) {
|
|
22
|
-
/* Media query for desktop */
|
|
23
|
-
max-width: 37.5rem;
|
|
24
|
-
min-width: 12.5rem;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.digit-text-mobile-input-width {
|
|
28
|
-
.digit-text-input-width {
|
|
29
|
-
width: calc(540px - 41px);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
.digit-citizen-card-input--front {
|
|
33
|
-
@extend .typography.text-body-s;
|
|
34
|
-
@extend .light-background;
|
|
35
|
-
width: fit-content !important;
|
|
36
|
-
display: flex;
|
|
37
|
-
align-items: center;
|
|
38
|
-
/* background: theme(colors.grey.mid); */
|
|
39
|
-
border-right: 0;
|
|
40
|
-
padding-right: 5px;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.digit-citizen-card-input {
|
|
44
|
-
@extend .typography.text-body-s;
|
|
45
|
-
@apply pl-sm outline-none block w-full h-10 bg-white leading-10 text-form-field;
|
|
46
|
-
border: 1px solid theme(digitv2.lightTheme.text-secondary);
|
|
47
|
-
color: theme(digitv2.lightTheme.text-primary);
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.digit-citizen-card-input--front {
|
|
51
|
-
@extend .typography.text-body-s;
|
|
52
|
-
width: fit-content !important;
|
|
53
|
-
display: flex;
|
|
54
|
-
align-items: center;
|
|
55
|
-
background: theme(colors.grey.mid);
|
|
56
|
-
border-right: 0;
|
|
57
|
-
padding-right: 5px;
|
|
58
|
-
}
|
|
59
|
-
.digit-employee-card-input-error {
|
|
60
|
-
@extend .typography.text-body-s;
|
|
61
|
-
@extend .light-input-border;
|
|
62
|
-
@extend .alert-error;
|
|
63
|
-
@apply mb-lg pl-sm block w-full h-10 outline-none border-2 border-solid bg-white leading-10 text-form-field text-text-primary;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
1
|
+
@import url("../index.scss");
|
|
2
|
+
@import url("../typography.scss");
|
|
3
|
+
|
|
4
|
+
.digit-mobile-number-container {
|
|
5
|
+
@apply flex items-center;
|
|
6
|
+
width: 100%;
|
|
7
|
+
|
|
8
|
+
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
|
|
9
|
+
/* Media query for tablets */
|
|
10
|
+
max-width: 27.5rem;
|
|
11
|
+
min-width: 12.5rem;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@media (max-aspect-ratio: 9/16) {
|
|
15
|
+
/* Media query for mobile */
|
|
16
|
+
max-width:100%;
|
|
17
|
+
min-width: 9.75rem;
|
|
18
|
+
width: 100%;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@media (min-aspect-ratio: 3/4) {
|
|
22
|
+
/* Media query for desktop */
|
|
23
|
+
max-width: 37.5rem;
|
|
24
|
+
min-width: 12.5rem;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.digit-text-mobile-input-width {
|
|
28
|
+
.digit-text-input-width {
|
|
29
|
+
width: calc(540px - 41px);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
.digit-citizen-card-input--front {
|
|
33
|
+
@extend .typography.text-body-s;
|
|
34
|
+
@extend .light-background;
|
|
35
|
+
width: fit-content !important;
|
|
36
|
+
display: flex;
|
|
37
|
+
align-items: center;
|
|
38
|
+
/* background: theme(colors.grey.mid); */
|
|
39
|
+
border-right: 0;
|
|
40
|
+
padding-right: 5px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.digit-citizen-card-input {
|
|
44
|
+
@extend .typography.text-body-s;
|
|
45
|
+
@apply pl-sm outline-none block w-full h-10 bg-white leading-10 text-form-field;
|
|
46
|
+
border: 1px solid theme(digitv2.lightTheme.text-secondary);
|
|
47
|
+
color: theme(digitv2.lightTheme.text-primary);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.digit-citizen-card-input--front {
|
|
51
|
+
@extend .typography.text-body-s;
|
|
52
|
+
width: fit-content !important;
|
|
53
|
+
display: flex;
|
|
54
|
+
align-items: center;
|
|
55
|
+
background: theme(colors.grey.mid);
|
|
56
|
+
border-right: 0;
|
|
57
|
+
padding-right: 5px;
|
|
58
|
+
}
|
|
59
|
+
.digit-employee-card-input-error {
|
|
60
|
+
@extend .typography.text-body-s;
|
|
61
|
+
@extend .light-input-border;
|
|
62
|
+
@extend .alert-error;
|
|
63
|
+
@apply mb-lg pl-sm block w-full h-10 outline-none border-2 border-solid bg-white leading-10 text-form-field text-text-primary;
|
|
64
|
+
}
|
|
65
|
+
}
|