21 lines
512 B
CSS
21 lines
512 B
CSS
/* @tailwind base; */
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply bg-neutral-900 text-white font-sans;
|
|
}
|
|
a, a:visited {
|
|
@apply text-neutral-300 hover:text-purple-500;
|
|
}
|
|
input, textarea {
|
|
@apply border-none p-2 bg-neutral-800 text-white disabled:text-neutral-600 read-only:text-neutral-600 read-only:select-none
|
|
}
|
|
select {
|
|
@apply border-none p-2 bg-neutral-800 text-white disabled:text-neutral-600 read-only:select-none
|
|
}
|
|
|
|
button {
|
|
@apply border-none px-2 p-1 cursor-pointer;
|
|
}
|