TorbatYar/frontend/styles/globals.css
Mortezakoohjani 800b0ba2c5 Deploy TorbatYar for torbatyar.ir with nginx multi-tenant routing.
Wire production domain, CORS for tenant subdomains, celery volume mounts, and nginx reverse proxy configs for apex, API, identity, auth, and wildcard tenants.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-21 21:43:33 +03:30

28 lines
658 B
CSS

@import url("/fonts/yekan-bakh/yekan-bakh.css");
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--color-primary: #0284c7;
--color-secondary: #0f172a;
--color-primary-muted: rgba(2, 132, 199, 0.12);
--color-primary-soft: rgba(2, 132, 199, 0.08);
--color-secondary-muted: rgba(15, 23, 42, 0.06);
}
body {
font-family: "Yekan Bakh FaNum", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
@apply bg-white text-secondary antialiased;
}
@layer utilities {
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
}