canina/frontend/admin-panel/src/index.css
parsa aghaei 5fe1b8f285
Some checks failed
Deploy Canina / deploy (push) Failing after 5m2s
fix: move @import tailwindcss to top of index.css to restore styles on Vite 8
2026-07-13 11:32:23 +03:30

57 lines
1.3 KiB
CSS

@import "tailwindcss";
@font-face {
font-family: 'Vazirmatn';
src: url('/fonts/vazirmatn-v33.003/fonts/webfonts/Vazirmatn[wght].woff2') format('woff2-variations'),
url('/fonts/vazirmatn-v33.003/fonts/webfonts/Vazirmatn-Regular.woff2') format('woff2');
font-weight: 100 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Shabnam';
src: url('/fonts/shabnam-font-v33.003/fonts/webfonts/Shabnam.woff2') format('woff2');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Lalezar';
src: url('/fonts/Lalezar-Font-fontyab.com_/Lalezar-Font/TTF/Lalezar-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@theme {
--font-sans: "Vazirmatn", sans-serif;
--font-vazir: "Vazirmatn", sans-serif;
--font-shabnam: "Shabnam", sans-serif;
--font-lalezar: "Lalezar", cursive;
}
@layer base {
:root {
font-family: "Vazirmatn", sans-serif !important;
}
body {
background-color: var(--color-gray-50);
color: var(--color-gray-900);
margin: 0;
font-family: "Vazirmatn", sans-serif !important;
}
button, a {
cursor: pointer;
}
}
@layer utilities {
.font-vazir {
font-family: "Vazirmatn", sans-serif;
}
}