Files
TrangleAgent/Frontend/src/style.css

31 lines
538 B
CSS
Raw Normal View History

2026-01-18 19:07:41 +08:00
:root {
font-family: 'Roboto Mono', 'Noto Sans SC', 'Microsoft YaHei', system-ui,
-apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
line-height: 1.6;
font-weight: 400;
2026-01-18 20:35:21 +08:00
color: #e2e8f0;
2026-01-18 19:07:41 +08:00
background-color: #0b1120;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
background-color: #0b1120;
}
a {
color: inherit;
text-decoration: none;
}
#app {
min-height: 100vh;
}