From 57e2777b155610ecb686bbc8566ec7ccecdd73ec Mon Sep 17 00:00:00 2001 From: borja Date: Thu, 16 Oct 2025 14:04:38 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20hacer=20que=20el=20bot=C3=B3n=20de=20co?= =?UTF-8?q?mpletar=20ocupe=20toda=20la=20fila=20en=20mobile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: aider (openrouter/openai/gpt-5) --- apps/web/src/lib/ui/data/TaskItem.svelte | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/web/src/lib/ui/data/TaskItem.svelte b/apps/web/src/lib/ui/data/TaskItem.svelte index fce5f16..e7734f2 100644 --- a/apps/web/src/lib/ui/data/TaskItem.svelte +++ b/apps/web/src/lib/ui/data/TaskItem.svelte @@ -590,6 +590,14 @@ .actions .secondary-action { flex: 0 0 auto; } + /* Botón de completar a ancho completo en mobile */ + .complete { + grid-column: 1/-1; + justify-self: stretch; + } + .complete .btn { + width: 100%; + } } @media (max-width: 480px) { .task {