mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-17 19:47:10 +08:00
27 lines
488 B
CSS
27 lines
488 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: "HFKos";
|
|
src: url("./fonts/HFKos-R.ttf") format("truetype");
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
|
|
@layer base {
|
|
:root {
|
|
--font-num: "HFKos", "PingFang-Medium", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.center-row {
|
|
@apply flex flex-row items-center;
|
|
}
|
|
|
|
.center-col {
|
|
@apply flex flex-col items-center;
|
|
}
|
|
}
|