17 lines
280 B
CSS
17 lines
280 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: #f3f4f6;
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
|
|
Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
}
|