diff --git a/frontend/src/pages/user/UserPage.css b/frontend/src/pages/user/UserPage.css new file mode 100644 index 0000000..fd10a93 --- /dev/null +++ b/frontend/src/pages/user/UserPage.css @@ -0,0 +1,19 @@ +/* UserPage.css - Custom styles that can't be done with Tailwind */ + +.spinner { + width: 40px; + height: 40px; + border: 3px solid #f0f0f0; + border-top: 3px solid #000; + border-radius: 50%; + animation: spin 1s linear infinite; +} + +@keyframes spin { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} diff --git a/frontend/src/pages/user/UserPage.vue b/frontend/src/pages/user/UserPage.vue index 147a64d..05b6db6 100644 --- a/frontend/src/pages/user/UserPage.vue +++ b/frontend/src/pages/user/UserPage.vue @@ -1,22 +1,24 @@ @@ -463,443 +472,5 @@ onMounted(async () => {