@pmidc/upyog-css 1.2.36-UAT.16 → 1.2.36-UAT.17
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
package/src/components/card.scss
CHANGED
|
@@ -119,6 +119,17 @@
|
|
|
119
119
|
box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
+
.new-inbox-tenant-selector {
|
|
123
|
+
display: flex;
|
|
124
|
+
flex-direction: column;
|
|
125
|
+
align-items: flex-start;
|
|
126
|
+
gap: 10px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.new-inbox-tenant-dropdown {
|
|
130
|
+
width: min(100%, 340px);
|
|
131
|
+
}
|
|
132
|
+
|
|
122
133
|
.new-inbox-table-card {
|
|
123
134
|
margin-top: 16px;
|
|
124
135
|
background: #ffffff;
|
|
@@ -177,6 +188,10 @@
|
|
|
177
188
|
|
|
178
189
|
/* Mobile responsive styles */
|
|
179
190
|
@media screen and (max-width: 768px) {
|
|
191
|
+
.new-inbox-tenant-dropdown {
|
|
192
|
+
width: 100%;
|
|
193
|
+
}
|
|
194
|
+
|
|
180
195
|
.new-inbox-topbar {
|
|
181
196
|
flex-direction: column;
|
|
182
197
|
align-items: stretch;
|
|
@@ -450,4 +450,22 @@
|
|
|
450
450
|
max-width: none;
|
|
451
451
|
min-width: 0;
|
|
452
452
|
width: auto;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.fire-noc-doc-required-card {
|
|
456
|
+
background: #FAFAFA;
|
|
457
|
+
border: 1px solid #D6D5D4;
|
|
458
|
+
padding: 8px;
|
|
459
|
+
border-radius: 4px;
|
|
460
|
+
max-width: 600px;
|
|
461
|
+
min-width: 95%;
|
|
462
|
+
margin-bottom: 15px;
|
|
463
|
+
padding-top: 15px;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.fire-noc-doc-required-field {
|
|
467
|
+
min-width: 100%;
|
|
468
|
+
display: flex;
|
|
469
|
+
flex-direction: column;
|
|
470
|
+
gap: 10px;
|
|
453
471
|
}
|