Files
harbor-web/src/style.css
2025-10-22 17:26:10 +08:00

16 lines
219 B
CSS

/* 全局样式重置 */
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f5f5;
color: #333;
}
#app {
min-height: 100vh;
}