Initial commit: Meshkee dashboards monorepo.

Includes business, customer, and super-admin apps with shared packages and production deploy scripts.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Alireza Hassani
2026-07-22 13:48:53 +03:30
co-authored by Cursor
commit f566387c61
509 changed files with 62690 additions and 0 deletions
@@ -0,0 +1,62 @@
.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;
}
}