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

24 lines
397 B
CSS
Raw Normal View History

2024-09-20 02:28:25 +08:00
@tailwind base;
@tailwind components;
@tailwind utilities;
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;
border-radius: 10px;
2024-09-20 02:28:25 +08:00
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}