mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-17 23:20:43 +00:00
15 lines
237 B
Plaintext
15 lines
237 B
Plaintext
/* Write your global styles here, in PostCSS syntax */
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html {
|
|
@apply bg-black text-white;
|
|
}
|
|
input {
|
|
@apply bg-black border;
|
|
}
|
|
button {
|
|
@apply border px-2 p-1 bg-green-500;
|
|
}
|