@djb25/digit-ui-css 1.0.32 → 1.0.34
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 +1 -1
- package/src/components/VerticalTimeline.scss +136 -62
- package/src/components/WorkflowTimeline.scss +25 -3
- package/src/components/actionbar.scss +7 -0
- package/src/components/body.scss +16 -8
- package/src/components/card.scss +78 -30
- package/src/components/hoc/InboxComposer.scss +5 -0
- package/src/components/navbar.scss +1 -0
- package/src/components/popup.scss +3 -2
- package/src/index.scss +6 -2
- package/src/pages/employee/hrms.scss +5 -5
- package/src/pages/employee/inbox.scss +1 -1
- package/src/pages/employee/index.scss +38 -9
|
@@ -14,14 +14,10 @@
|
|
|
14
14
|
display: flex;
|
|
15
15
|
flex-direction: column;
|
|
16
16
|
gap: 12px;
|
|
17
|
-
padding: 20px 20px 0;
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
/* @apply flex flex-col; */
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
@media (min-width: 325px) and (max-width: 768px) {
|
|
24
|
-
.ground-container {
|
|
20
|
+
@media (min-width: 325px) and (max-width: 768px) {
|
|
25
21
|
padding-top: 11px;
|
|
26
22
|
padding-inline: 10px;
|
|
27
23
|
}
|
|
@@ -101,19 +97,52 @@
|
|
|
101
97
|
}
|
|
102
98
|
|
|
103
99
|
.employee-form-content {
|
|
104
|
-
flex: 1
|
|
100
|
+
flex: 1;
|
|
105
101
|
overflow-y: auto;
|
|
106
|
-
height: 100%;
|
|
107
102
|
display: flex;
|
|
108
103
|
flex-direction: column;
|
|
109
104
|
gap: 16px;
|
|
105
|
+
@media (max-width: 768px) {
|
|
106
|
+
padding-bottom: 12px;
|
|
107
|
+
}
|
|
110
108
|
}
|
|
111
109
|
|
|
112
110
|
.employee-form-content-with-action-bar {
|
|
113
|
-
|
|
111
|
+
padding-bottom: 48px;
|
|
112
|
+
height: 100%;
|
|
113
|
+
@media (max-width: 768px) {
|
|
114
|
+
padding-bottom: 68px;
|
|
115
|
+
}
|
|
114
116
|
}
|
|
115
117
|
|
|
116
|
-
.
|
|
118
|
+
.employee-form-section-wrapper {
|
|
119
|
+
flex: 1 1 0%;
|
|
120
|
+
overflow-y: auto;
|
|
121
|
+
height: 100%;
|
|
122
|
+
display: flex;
|
|
123
|
+
gap: 16px;
|
|
124
|
+
@media (max-width: 768px) {
|
|
125
|
+
flex-direction: column;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.employee-form-section {
|
|
130
|
+
display: flex;
|
|
131
|
+
gap: 16px;
|
|
132
|
+
width: 100%;
|
|
133
|
+
overflow-y: scroll;
|
|
134
|
+
@media (max-width: 768px) {
|
|
135
|
+
flex-direction: column;
|
|
136
|
+
flex: 1 1 0%;
|
|
137
|
+
overflow-y: auto;
|
|
138
|
+
height: 100%;
|
|
139
|
+
display: flex;
|
|
140
|
+
flex-direction: column;
|
|
141
|
+
gap: 16px;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.employee-form .citizen {
|
|
117
146
|
.main {
|
|
118
147
|
padding-top: 82px;
|
|
119
148
|
min-height: calc(100vh - 90px);
|