feat: add user update functionality and theme management

This commit is contained in:
2025-07-23 19:45:21 +02:00
parent a7ee03bce0
commit e56278fa82
9 changed files with 245 additions and 33 deletions

View File

@@ -1 +1,17 @@
@import "tailwindcss";
@import "tailwindcss";
/* Example: App.css */
body.dark {
background: #222;
color: #fff;
}
body {
background: #fff;
color: #222;
}
html.dark body {
background: #222;
color: #fff;
}