@djb25/digit-ui-css 1.0.25 → 1.0.26
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/hoc/InboxComposer.scss +1 -1
- package/src/components/staticSideBar.scss +207 -1
- package/src/index.scss +7 -0
- package/src/pages/citizen/HomePageWrapper.scss +263 -83
- package/src/pages/employee/inbox.scss +2 -0
- package/src/pages/employee/index.scss +20 -1
|
@@ -74,6 +74,26 @@
|
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
+
.no-scrollbar::-webkit-scrollbar {
|
|
78
|
+
display: none;
|
|
79
|
+
}
|
|
80
|
+
.no-scrollbar {
|
|
81
|
+
scrollbar-width: none;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.hide-x-scrollbar {
|
|
85
|
+
overflow-x: auto;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.hide-x-scrollbar::-webkit-scrollbar:horizontal {
|
|
89
|
+
display: none;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Firefox */
|
|
93
|
+
.hide-x-scrollbar {
|
|
94
|
+
scrollbar-width: none;
|
|
95
|
+
}
|
|
96
|
+
|
|
77
97
|
.employee-main-application-details {
|
|
78
98
|
width: 100%;
|
|
79
99
|
overflow-y: scroll;
|
|
@@ -867,7 +887,6 @@
|
|
|
867
887
|
}
|
|
868
888
|
}
|
|
869
889
|
|
|
870
|
-
|
|
871
890
|
.top-info-cards-wrapper {
|
|
872
891
|
display: flex;
|
|
873
892
|
flex-direction: column;
|