24 lines
351 B
CSS
24 lines
351 B
CSS
@import 'tailwindcss';
|
|
@import './theme.css';
|
|
@import "tw-animate-css";
|
|
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply text-foreground select-none;
|
|
}
|
|
input,
|
|
textarea,
|
|
[contenteditable='true'],
|
|
[contenteditable=''] {
|
|
@apply select-text;
|
|
}
|
|
input::placeholder,
|
|
textarea::placeholder {
|
|
opacity: 0.4;
|
|
}
|
|
}
|