Initial commit

This commit is contained in:
UltraLionFr
2026-01-02 17:52:07 +01:00
parent b29bd25170
commit 972bafc4e0
36 changed files with 8742 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
@import "tailwindcss";
@layer base {
body {
background-color: #111827;
color: #ffffff;
overflow-x: hidden;
}
textarea {
scrollbar-width: thin;
scrollbar-color: #4b5563 #1f2937;
}
textarea::-webkit-scrollbar {
width: 8px;
}
textarea::-webkit-scrollbar-track {
background: #1f2937;
}
textarea::-webkit-scrollbar-thumb {
background: #4b5563;
border-radius: 4px;
}
textarea::-webkit-scrollbar-thumb:hover {
background: #6b7280;
}
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}