29 lines
509 B
CSS
29 lines
509 B
CSS
:root {
|
|
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Remove default button styles to let Ant Design handle them */
|
|
button {
|
|
font-family: inherit;
|
|
}
|
|
|
|
/* Ensure proper theme support */
|
|
#root {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|