Initial commit: SubSplit - subscription split tracker

This commit is contained in:
2026-07-31 13:40:26 -07:00
commit 30eb44429c
29 changed files with 9081 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
@import "tailwindcss";
@layer base {
body {
font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
}
/* Custom Scrollbar for crisp professional look */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(148, 163, 184, 0.4);
border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(100, 116, 139, 0.6);
}