mirror of
https://git.meshkee.com/Meshkee/dashboards.git
synced 2026-08-11 22:30:58 +04:30
Includes business, customer, and super-admin apps with shared packages and production deploy scripts. Co-authored-by: Cursor <cursoragent@cursor.com>
63 lines
958 B
CSS
63 lines
958 B
CSS
.modal {
|
|
width: min(560px, calc(100vw - 32px));
|
|
}
|
|
|
|
.body {
|
|
padding: 0 20px 20px;
|
|
}
|
|
|
|
.metaGrid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 12px 16px;
|
|
margin: 0 0 18px;
|
|
}
|
|
|
|
.metaItem {
|
|
min-width: 0;
|
|
}
|
|
|
|
.metaItem dt {
|
|
margin: 0 0 4px;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.02em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.metaItem dd {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--text-primary);
|
|
word-break: break-word;
|
|
}
|
|
|
|
.messageBlock {
|
|
padding-top: 16px;
|
|
border-top: 1px solid rgba(148, 163, 184, 0.2);
|
|
}
|
|
|
|
.messageLabel {
|
|
margin: 0 0 10px;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.messageText {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
line-height: 1.65;
|
|
color: var(--text-primary);
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
}
|
|
|
|
@media (max-width: 520px) {
|
|
.metaGrid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|