16 lines
343 B
CSS
16 lines
343 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
body {
|
|
@apply bg-surface-dark text-gray-100 antialiased;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.input-field {
|
|
@apply w-full rounded border border-gray-600 bg-surface-light px-3 py-2 text-sm text-white placeholder-gray-500 focus:border-accent focus:outline-none;
|
|
}
|
|
}
|