@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/dist/index.css
CHANGED
|
@@ -11341,6 +11341,19 @@ body {
|
|
|
11341
11341
|
word-break: break-word;
|
|
11342
11342
|
text-align: right; } }
|
|
11343
11343
|
|
|
11344
|
+
.loader-message {
|
|
11345
|
+
display: -webkit-box;
|
|
11346
|
+
display: -ms-flexbox;
|
|
11347
|
+
display: flex;
|
|
11348
|
+
-webkit-box-pack: center;
|
|
11349
|
+
-ms-flex-pack: center;
|
|
11350
|
+
justify-content: center;
|
|
11351
|
+
-webkit-box-align: center;
|
|
11352
|
+
-ms-flex-align: center;
|
|
11353
|
+
align-items: center;
|
|
11354
|
+
font-weight: 700;
|
|
11355
|
+
font-size: 19px; }
|
|
11356
|
+
|
|
11344
11357
|
.display-none {
|
|
11345
11358
|
display: none; }
|
|
11346
11359
|
|
|
@@ -12055,9 +12068,6 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
12055
12068
|
.moduleLinkHomePage h1 {
|
|
12056
12069
|
padding-left: 20px; }
|
|
12057
12070
|
|
|
12058
|
-
.no-left-margin {
|
|
12059
|
-
margin-left: 0 !important; }
|
|
12060
|
-
|
|
12061
12071
|
@media screen and (max-width: 768px) {
|
|
12062
12072
|
.citizen .inboxButton {
|
|
12063
12073
|
font-size: 1rem; } }
|
|
@@ -12070,3 +12080,16 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
12070
12080
|
text-align: center; }
|
|
12071
12081
|
.submit-bar {
|
|
12072
12082
|
font-size: 11px; } }
|
|
12083
|
+
|
|
12084
|
+
.options-card {
|
|
12085
|
+
max-height: 350px;
|
|
12086
|
+
min-height: 120px;
|
|
12087
|
+
overflow-y: auto;
|
|
12088
|
+
overflow-x: hidden;
|
|
12089
|
+
border: 1px solid #ccc;
|
|
12090
|
+
border-radius: 8px;
|
|
12091
|
+
background-color: #fff;
|
|
12092
|
+
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
12093
|
+
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
12094
|
+
padding: 4px 0;
|
|
12095
|
+
z-index: 1000; }
|