Files
aplp.frontend.lms/src/index.css
T

39 lines
566 B
CSS
Raw Normal View History

2026-08-12 21:18:47 +07:00
:root {
2026-08-12 22:15:06 +07:00
--sidebar-width: 264px;
2026-08-12 21:18:47 +07:00
2026-08-12 22:15:06 +07:00
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
sans-serif;
2026-08-19 11:37:47 +07:00
color: var(--color-app-text);
background: var(--color-app-bg);
2026-08-12 21:18:47 +07:00
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2026-08-12 22:15:06 +07:00
* {
2026-08-12 21:18:47 +07:00
box-sizing: border-box;
}
2026-08-12 22:15:06 +07:00
body {
min-width: 320px;
min-height: 100vh;
2026-08-12 21:18:47 +07:00
margin: 0;
}
2026-08-12 22:15:06 +07:00
a {
color: inherit;
2026-08-12 21:18:47 +07:00
}
2026-08-12 22:15:06 +07:00
button,
input,
textarea,
select {
font: inherit;
}
#root {
min-height: 100vh;
2026-08-12 21:18:47 +07:00
}