diff --git a/.gitignore b/.gitignore index b694934..46e5b6d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -.venv \ No newline at end of file +.venv +__pycache__ +*.pyc \ No newline at end of file diff --git a/backend_py/__pycache__/auth.cpython-312.pyc b/backend_py/__pycache__/auth.cpython-312.pyc deleted file mode 100644 index 7d7a195..0000000 Binary files a/backend_py/__pycache__/auth.cpython-312.pyc and /dev/null differ diff --git a/backend_py/__pycache__/config.cpython-312.pyc b/backend_py/__pycache__/config.cpython-312.pyc deleted file mode 100644 index 0c8d4e8..0000000 Binary files a/backend_py/__pycache__/config.cpython-312.pyc and /dev/null differ diff --git a/backend_py/__pycache__/db_handler.cpython-312.pyc b/backend_py/__pycache__/db_handler.cpython-312.pyc deleted file mode 100644 index 4a1534c..0000000 Binary files a/backend_py/__pycache__/db_handler.cpython-312.pyc and /dev/null differ diff --git a/backend_py/__pycache__/main.cpython-312.pyc b/backend_py/__pycache__/main.cpython-312.pyc deleted file mode 100644 index 86eedc1..0000000 Binary files a/backend_py/__pycache__/main.cpython-312.pyc and /dev/null differ diff --git a/backend_py/__pycache__/messages.cpython-312.pyc b/backend_py/__pycache__/messages.cpython-312.pyc deleted file mode 100644 index 8c45080..0000000 Binary files a/backend_py/__pycache__/messages.cpython-312.pyc and /dev/null differ diff --git a/backend_py/__pycache__/utils.cpython-312.pyc b/backend_py/__pycache__/utils.cpython-312.pyc deleted file mode 100644 index a76d02d..0000000 Binary files a/backend_py/__pycache__/utils.cpython-312.pyc and /dev/null differ diff --git a/backend_py/endpoints/__pycache__/auth.cpython-312.pyc b/backend_py/endpoints/__pycache__/auth.cpython-312.pyc index 7c55c9a..25ac622 100644 Binary files a/backend_py/endpoints/__pycache__/auth.cpython-312.pyc and b/backend_py/endpoints/__pycache__/auth.cpython-312.pyc differ diff --git a/backend_py/endpoints/__pycache__/messages.cpython-312.pyc b/backend_py/endpoints/__pycache__/messages.cpython-312.pyc index 50a0ebb..0a68292 100644 Binary files a/backend_py/endpoints/__pycache__/messages.cpython-312.pyc and b/backend_py/endpoints/__pycache__/messages.cpython-312.pyc differ diff --git a/data/db.sqlite b/data/db.sqlite index 9140008..7e073db 100644 Binary files a/data/db.sqlite and b/data/db.sqlite differ diff --git a/frontend/src/assets/main.css b/frontend/src/assets/main.css index 32f4994..e24cffa 100644 --- a/frontend/src/assets/main.css +++ b/frontend/src/assets/main.css @@ -34,3 +34,7 @@ main { .boxed { @apply space-y-2 bg-blue-200 p-4 rounded-2xl shadow-lg; } + +table td { + @apply p-1; +} diff --git a/frontend/src/views/User.vue b/frontend/src/views/User.vue index cdc3471..bdff190 100644 --- a/frontend/src/views/User.vue +++ b/frontend/src/views/User.vue @@ -38,28 +38,32 @@ const onNewUserCreation = async () => {