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 @@