24 lines
482 B
CSS
24 lines
482 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
/* normal */
|
|
@font-face {
|
|
font-family: "Adelle Sans";
|
|
src: url("/fonts/AdelleSans-Regular.woff2") format("woff2");
|
|
font-style: normal;
|
|
font-display: swap;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* semibold */
|
|
@font-face {
|
|
font-family: "Adelle Sans";
|
|
src: url("/fonts/AdelleSans-Semibold.woff2") format("woff2");
|
|
font-style: normal;
|
|
font-display: swap;
|
|
font-weight: 600;
|
|
}
|
|
}
|