25 lines
433 B
CSS
25 lines
433 B
CSS
@import "tailwindcss";
|
|
|
|
@font-face {
|
|
font-family: "MyEstedad";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
src: url("/fonts/Estedad.ttf") format("truetype");
|
|
}
|
|
|
|
@theme {
|
|
--font-MyEstedad: "MyEstedad", sans-serif;
|
|
}
|
|
|
|
@layer base {
|
|
html {
|
|
direction: rtl;
|
|
}
|
|
|
|
body {
|
|
/* @apple font-MyEstedad; */
|
|
font-family: var(--font-MyEstedad);
|
|
direction: rtl;
|
|
}
|
|
} |