@pmidc/upyog-css 1.0.30 → 1.0.31
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 +29 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/CardBasedOptions.scss +67 -69
- package/src/components/table.scss +1 -0
- package/src/index.scss +84 -63
package/dist/index.css
CHANGED
|
@@ -3269,6 +3269,7 @@ img, video {
|
|
|
3269
3269
|
.table-fixed-first-column tbody td:first-child {
|
|
3270
3270
|
position: sticky;
|
|
3271
3271
|
background: #fff;
|
|
3272
|
+
color: #a82227;
|
|
3272
3273
|
left: 0;
|
|
3273
3274
|
border-right: 1px solid #b1b4b6; }
|
|
3274
3275
|
|
|
@@ -5057,7 +5058,7 @@ video::-webkit-media-controls-panel {
|
|
|
5057
5058
|
|
|
5058
5059
|
@media (min-width: 780px) {
|
|
5059
5060
|
.CardBasedOptions {
|
|
5060
|
-
width: calc(
|
|
5061
|
+
width: calc(100% - 16px);
|
|
5061
5062
|
padding: 0 !important;
|
|
5062
5063
|
height: 250px !important; } }
|
|
5063
5064
|
|
|
@@ -11400,6 +11401,33 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
11400
11401
|
padding: 15px;
|
|
11401
11402
|
font-size: 1.2rem; }
|
|
11402
11403
|
|
|
11404
|
+
.ndc_property_search .text-input {
|
|
11405
|
+
width: 100%;
|
|
11406
|
+
max-width: 300px; }
|
|
11407
|
+
|
|
11408
|
+
.action-bar-wrap {
|
|
11409
|
+
display: -webkit-box;
|
|
11410
|
+
display: -ms-flexbox;
|
|
11411
|
+
display: flex;
|
|
11412
|
+
-webkit-box-pack: end;
|
|
11413
|
+
-ms-flex-pack: end;
|
|
11414
|
+
justify-content: end;
|
|
11415
|
+
grid-gap: 10px;
|
|
11416
|
+
gap: 10px; }
|
|
11417
|
+
|
|
11418
|
+
.action-bar-wrap .submit-bar {
|
|
11419
|
+
padding: 0 !important;
|
|
11420
|
+
margin: 0 !important; }
|
|
11421
|
+
|
|
11403
11422
|
@media screen and (max-width: 768px) {
|
|
11404
11423
|
.citizen .inboxButton {
|
|
11405
11424
|
font-size: 1rem; } }
|
|
11425
|
+
|
|
11426
|
+
@media screen and (max-width: 768px) {
|
|
11427
|
+
.stepper {
|
|
11428
|
+
display: grid !important; }
|
|
11429
|
+
.action-bar-wrap {
|
|
11430
|
+
padding: 10px 0;
|
|
11431
|
+
text-align: center; }
|
|
11432
|
+
.submit-bar {
|
|
11433
|
+
font-size: 11px; } }
|