Files
cstb-next/src/app/globals.css

27 lines
490 B
CSS
Raw Normal View History

2025-11-05 00:22:03 +08:00
@import "tailwindcss";
@config "../../tailwind.config.js";
2024-09-20 02:28:25 +08:00
html,
body {
padding: 0;
margin: 0;
2024-09-20 23:15:42 +08:00
width: 100%;
height: 100%;
2024-11-11 10:04:00 +08:00
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
2025-03-14 19:10:29 +08:00
background: transparent !important;
2024-09-20 02:28:25 +08:00
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
/* 隐藏滚动条 */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}