This commit is contained in:
2025-11-03 19:51:51 -07:00
parent 9e20d06005
commit cb25e36222
10 changed files with 14 additions and 1013 deletions

View File

@@ -1,7 +1,6 @@
export interface LauncherUpdate {
id: string
releaseDate: number
downloadUrls: string[]
platforms: string[]
sha512sums: string[]
downloadUrl: string
sha512sum: string
}

View File

@@ -0,0 +1,9 @@
@import "tailwindcss";
body {
@apply bg-[rgb(24,24,24)] text-white select-none;
}
button {
@apply bg-[rgb(48,48,48)] hover:bg-[rgb(56,56,56)] border border-[rgb(72,72,72)] hover:border-[rgb(80,80,80)] transition-colors px-2 py-1 rounded-md cursor-pointer;
}