From a8488f111f079fa32e20192fec2849273061dff1 Mon Sep 17 00:00:00 2001 From: "Edward Tirado Jr." Date: Wed, 8 Apr 2026 19:04:15 -0500 Subject: [PATCH] cleaned up mobile styling and updated input action component --- app/components/common/card.vue | 6 +++ app/components/common/combo-box.vue | 11 ------ app/components/common/input-action.vue | 47 +++++++++++++++++++++++ app/components/forms/auth/login-form.vue | 14 ++++++- app/components/forms/create-list-form.vue | 33 +++++----------- app/components/header.vue | 5 +++ app/components/list-settings.vue | 19 +++++---- app/components/movie-list.vue | 4 +- app/components/panels/movie-search.vue | 8 ++-- app/composables/$api.ts | 3 +- app/pages/lists/index.vue | 18 ++++++--- 11 files changed, 112 insertions(+), 56 deletions(-) delete mode 100644 app/components/common/combo-box.vue create mode 100644 app/components/common/input-action.vue diff --git a/app/components/common/card.vue b/app/components/common/card.vue index 32bc1ff..5d8cf64 100644 --- a/app/components/common/card.vue +++ b/app/components/common/card.vue @@ -17,4 +17,10 @@ border-radius: 0.5rem; } +@media (max-width: 640px) { + .card { + padding: 1rem; + } +} + \ No newline at end of file diff --git a/app/components/common/combo-box.vue b/app/components/common/combo-box.vue deleted file mode 100644 index 27324a8..0000000 --- a/app/components/common/combo-box.vue +++ /dev/null @@ -1,11 +0,0 @@ - - - - - \ No newline at end of file diff --git a/app/components/common/input-action.vue b/app/components/common/input-action.vue new file mode 100644 index 0000000..1700c64 --- /dev/null +++ b/app/components/common/input-action.vue @@ -0,0 +1,47 @@ + + + + + \ No newline at end of file diff --git a/app/components/forms/auth/login-form.vue b/app/components/forms/auth/login-form.vue index b25f8ab..3b0a8fc 100644 --- a/app/components/forms/auth/login-form.vue +++ b/app/components/forms/auth/login-form.vue @@ -10,12 +10,22 @@ const handleLogin = () => login(email.value, password.value)
- +
- +
diff --git a/app/components/forms/create-list-form.vue b/app/components/forms/create-list-form.vue index c3d657a..a2e0e22 100644 --- a/app/components/forms/create-list-form.vue +++ b/app/components/forms/create-list-form.vue @@ -1,4 +1,6 @@