unis_crm/frontend/src/index.css

32 lines
474 B
CSS
Raw Normal View History

2026-03-19 06:23:03 +00:00
@import "tailwindcss";
@custom-variant dark (&:where(.dark, .dark *));
2026-03-20 08:39:07 +00:00
:root {
font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
color: #0f172a;
background: #f8fafc;
}
html,
body,
#root {
min-height: 100%;
}
body {
margin: 0;
}
2026-03-19 06:23:03 +00:00
@layer utilities {
.scrollbar-hide {
/* IE and Edge */
-ms-overflow-style: none;
/* Firefox */
scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
}