mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
26 lines
523 B
CSS
26 lines
523 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
@apply bg-black;
|
|
}
|
|
body {
|
|
@apply bg-black m-0 p-0 min-h-screen text-white;
|
|
}
|
|
html,
|
|
body {
|
|
font-family: "Noto Sans TC Variable", "Fira Sans", sans-serif;
|
|
}
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "Noto Sans TC Variable";
|
|
font-style: normal;
|
|
font-display: auto;
|
|
font-weight: 100 900;
|
|
src: url(@fontsource-variable/noto-sans-tc/files/noto-sans-tc-chinese-traditional-wght-normal.woff2)
|
|
format("woff2-variations");
|
|
}
|