coolify/resources/css/app.css

17 lines
362 B
CSS
Raw Normal View History

/* @tailwind base; */
2023-03-17 15:33:48 +01:00
@tailwind components;
@tailwind utilities;
2023-05-03 14:36:53 +02:00
body {
@apply bg-neutral-900 text-white font-sans;
}
a, a:visited {
@apply text-neutral-300 hover:text-purple-500;
}
input, select, textarea {
@apply border-none p-2 bg-neutral-800 text-white disabled:text-neutral-600;
}
button {
@apply border-none px-2 rounded cursor-pointer;
}