@djb25/digit-ui-css 1.0.52 → 1.0.54
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/CitizenHomeCard.scss +197 -30
- package/src/components/actionbar.scss +11 -1
- package/src/components/card.scss +1 -2
- package/src/components/staticSideBar.scss +3 -4
- package/src/index.scss +9 -3
- package/src/pages/citizen/HomePageWrapper.scss +18 -73
- package/src/pages/employee/EmployeeModuleCard.scss +135 -0
- package/src/pages/employee/index.scss +13 -16
- package/src/pages/employee/popupmodule.scss +2 -2
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import "./login.scss";
|
|
2
|
+
@import "./EmployeeModuleCard.scss";
|
|
2
3
|
|
|
3
4
|
/* TODO: convert using tailwind */
|
|
4
5
|
.employee {
|
|
@@ -682,6 +683,17 @@
|
|
|
682
683
|
}
|
|
683
684
|
|
|
684
685
|
@media (min-width: 640px) {
|
|
686
|
+
.add-details-link {
|
|
687
|
+
color: #a82227;
|
|
688
|
+
cursor: pointer;
|
|
689
|
+
text-decoration: underline;
|
|
690
|
+
display: flex;
|
|
691
|
+
width: fit-content;
|
|
692
|
+
&:hover {
|
|
693
|
+
padding: 0 32px;
|
|
694
|
+
margin-left: 0;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
685
697
|
.employee {
|
|
686
698
|
display: flex;
|
|
687
699
|
flex-direction: column;
|
|
@@ -707,18 +719,6 @@
|
|
|
707
719
|
/* width: calc(100%-83px); */
|
|
708
720
|
}
|
|
709
721
|
|
|
710
|
-
.add-details-link {
|
|
711
|
-
color: #a82227;
|
|
712
|
-
cursor: pointer;
|
|
713
|
-
text-decoration: underline;
|
|
714
|
-
display: flex;
|
|
715
|
-
width: fit-content;
|
|
716
|
-
&:hover {
|
|
717
|
-
padding: 0 32px;
|
|
718
|
-
margin-left: 0;
|
|
719
|
-
}
|
|
720
|
-
}
|
|
721
|
-
|
|
722
722
|
.citizen-home-container {
|
|
723
723
|
display: flex;
|
|
724
724
|
flex-direction: unset !important;
|
|
@@ -731,14 +731,11 @@
|
|
|
731
731
|
.citizen {
|
|
732
732
|
.main {
|
|
733
733
|
width: 100%;
|
|
734
|
-
padding-top:
|
|
734
|
+
padding-top: 72px;
|
|
735
735
|
display: flex;
|
|
736
736
|
justify-content: center;
|
|
737
737
|
height: 100vh;
|
|
738
738
|
}
|
|
739
|
-
|
|
740
|
-
.center-container {
|
|
741
|
-
}
|
|
742
739
|
}
|
|
743
740
|
}
|
|
744
741
|
|