@pmidc/upyog-css 1.1.11 → 1.1.13
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 +554 -152
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/SurveyModal.scss +0 -1
- package/src/components/actionbar.scss +4 -1
- package/src/components/body.scss +6 -2
- package/src/components/buttons.scss +26 -10
- package/src/components/card.scss +5 -0
- package/src/components/datatable.scss +2 -0
- package/src/components/radiobtn.scss +1 -1
- package/src/components/selectdropdown.scss +3 -0
- package/src/components/table.scss +23 -2
- package/src/components/textfields.scss +1 -1
- package/src/components/topbar.scss +1 -1
- package/src/index.scss +355 -7
- package/src/pages/citizen/DocumentList.scss +6 -0
- package/src/pages/citizen/HomePageWrapper.scss +1 -0
- package/src/pages/citizen/citizenNewLogin.scss +2 -2
- package/src/pages/employee/inbox.scss +1 -1
- package/src/pages/employee/index.scss +22 -6
- package/src/pages/employee/surveys.scss +1 -1
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
.ground-container {
|
|
8
8
|
margin-bottom: 56px;
|
|
9
9
|
margin-left: 0px;
|
|
10
|
+
margin-top: 0px;
|
|
10
11
|
@apply flex flex-col;
|
|
11
12
|
}
|
|
12
13
|
.card-home {
|
|
@@ -64,7 +65,16 @@
|
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
.main {
|
|
67
|
-
padding
|
|
68
|
+
padding: 10px;
|
|
69
|
+
margin-top: 3rem;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@media (min-width: 640px) {
|
|
73
|
+
.main {
|
|
74
|
+
padding-top: 56px;
|
|
75
|
+
margin-top: 0;
|
|
76
|
+
padding: 0;
|
|
77
|
+
}
|
|
68
78
|
}
|
|
69
79
|
|
|
70
80
|
.submit-bar header {
|
|
@@ -178,7 +188,7 @@
|
|
|
178
188
|
}
|
|
179
189
|
.citizen {
|
|
180
190
|
.main {
|
|
181
|
-
padding-top:
|
|
191
|
+
padding-top: 56px;
|
|
182
192
|
min-height: calc(100vh - 48px);
|
|
183
193
|
display: flex !important;
|
|
184
194
|
justify-content: center;
|
|
@@ -516,7 +526,7 @@
|
|
|
516
526
|
.main {
|
|
517
527
|
display: flex;
|
|
518
528
|
flex-direction: column;
|
|
519
|
-
padding-top:
|
|
529
|
+
padding-top: 56px;
|
|
520
530
|
margin-left: 64px;
|
|
521
531
|
width: calc(100%-83px);
|
|
522
532
|
}
|
|
@@ -534,7 +544,7 @@
|
|
|
534
544
|
.citizen {
|
|
535
545
|
.main {
|
|
536
546
|
width: 100%;
|
|
537
|
-
padding-top:
|
|
547
|
+
padding-top: 56px;
|
|
538
548
|
min-height: calc(100vh - 48px);
|
|
539
549
|
margin-bottom: 18px !important;
|
|
540
550
|
display: flex !important;
|
|
@@ -545,6 +555,13 @@
|
|
|
545
555
|
}
|
|
546
556
|
}
|
|
547
557
|
|
|
558
|
+
/* Mobile view - add margin-top to ground-container */
|
|
559
|
+
@media only screen and (max-width: 639px) {
|
|
560
|
+
.employee .ground-container {
|
|
561
|
+
margin-top: 36px;
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
|
|
548
565
|
@media only screen and (max-width: 950px) {
|
|
549
566
|
#main-img {
|
|
550
567
|
content: url("https://i.postimg.cc/9Q7jT6Dd/Banner-Image-2.png");
|
|
@@ -623,8 +640,7 @@
|
|
|
623
640
|
.pageCard {
|
|
624
641
|
width: 100%;
|
|
625
642
|
height: 100%;
|
|
626
|
-
padding:
|
|
627
|
-
gap: 48px;
|
|
643
|
+
padding: 20px;
|
|
628
644
|
border-radius: 24px;
|
|
629
645
|
background: #ffffff;
|
|
630
646
|
}
|