feat: update base css

This commit is contained in:
codytseng
2024-12-17 11:07:46 +08:00
parent d1eba4eb09
commit 56d84ae18d

View File

@@ -3,10 +3,29 @@
@tailwind utilities;
@layer base {
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
-webkit-tap-highlight-color: transparent;
}
input,
textarea,
button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
body {
font-family: 'Inter', sans-serif;
color: hsl(var(--foreground));
background-color: hsl(var(--background));
overflow: hidden;
-webkit-overflow-scrolling: touch;
text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
.draggable {