@pmidc/upyog-css 1.0.46 → 1.0.48
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 +26 -3
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/index.scss +14 -4
- package/src/pages/citizen/loaderMessage.scss +7 -0
package/package.json
CHANGED
package/src/index.scss
CHANGED
|
@@ -123,6 +123,7 @@
|
|
|
123
123
|
@import "./pages/citizen/citizenNewLogin.scss";
|
|
124
124
|
@import "./pages/common/searchIcon.scss";
|
|
125
125
|
@import "./pages/common/sanctionFeeTable.scss";
|
|
126
|
+
@import "./pages/citizen/loaderMessage.scss";
|
|
126
127
|
|
|
127
128
|
.display-none {
|
|
128
129
|
display: none;
|
|
@@ -849,10 +850,6 @@ input[type="number"] {
|
|
|
849
850
|
padding-left: 20px;
|
|
850
851
|
}
|
|
851
852
|
|
|
852
|
-
.no-left-margin {
|
|
853
|
-
margin-left: 0 !important;
|
|
854
|
-
}
|
|
855
|
-
|
|
856
853
|
@media screen and (max-width: 768px) {
|
|
857
854
|
.citizen .inboxButton {
|
|
858
855
|
font-size: 1rem;
|
|
@@ -871,3 +868,16 @@ input[type="number"] {
|
|
|
871
868
|
font-size: 11px;
|
|
872
869
|
}
|
|
873
870
|
}
|
|
871
|
+
|
|
872
|
+
.options-card {
|
|
873
|
+
max-height: 350px; /* Upper limit to trigger scrolling */
|
|
874
|
+
min-height: 120px; /* Always some visible height */
|
|
875
|
+
overflow-y: auto; /* Vertical scrolling only */
|
|
876
|
+
overflow-x: hidden; /* No horizontal scroll */
|
|
877
|
+
border: 1px solid #ccc; /* Optional: visual boundary */
|
|
878
|
+
border-radius: 8px; /* Rounded corners for a modern look */
|
|
879
|
+
background-color: #fff; /* Ensure readable background */
|
|
880
|
+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
881
|
+
padding: 4px 0;
|
|
882
|
+
z-index: 1000; /* Ensure it appears above other elements */
|
|
883
|
+
}
|