mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
- upgrade all dependencies - upgrade to Tailwind CSS v4 - remove ugly default background - remove unnecessary default content - clean up files and remove those that are no longer needed
20 lines
241 B
CSS
20 lines
241 B
CSS
@import "tailwindcss";
|
|
|
|
body {
|
|
color: #1a1a1a;
|
|
background: #ffffff;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
color: #ffffff;
|
|
background: #0a0a0a;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.text-balance {
|
|
text-wrap: balance;
|
|
}
|
|
}
|