@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pmidc/upyog-css",
3
- "version": "1.0.46",
3
+ "version": "1.0.48",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
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
+ }
@@ -0,0 +1,7 @@
1
+ .loader-message {
2
+ display: flex;
3
+ justify-content: center;
4
+ align-items: center;
5
+ font-weight: bold;
6
+ font-size: 19px;
7
+ }