diff --git a/VERSION b/VERSION index 07e3f7d..c0908d3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.18.12 +6.18.13 diff --git a/play-life-web/package.json b/play-life-web/package.json index 93332d4..8b6a50e 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "6.18.12", + "version": "6.18.13", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/Buttons.css b/play-life-web/src/components/Buttons.css index 4d1a623..52fc4e8 100644 --- a/play-life-web/src/components/Buttons.css +++ b/play-life-web/src/components/Buttons.css @@ -17,6 +17,7 @@ cursor: pointer; transition: all 0.2s; flex: 1; + height: 52px; box-sizing: border-box; display: flex; align-items: center; @@ -46,9 +47,9 @@ display: flex; align-items: center; justify-content: center; - min-width: 44px; - width: 44px; - align-self: stretch; + width: 52px; + height: 52px; + flex-shrink: 0; box-sizing: border-box; } diff --git a/play-life-web/src/components/TaskForm.css b/play-life-web/src/components/TaskForm.css index 3c4ce8c..ae4fa31 100644 --- a/play-life-web/src/components/TaskForm.css +++ b/play-life-web/src/components/TaskForm.css @@ -349,9 +349,7 @@ border-top: 1px solid #e5e7eb; } -.cancel-button, -.submit-button, -.delete-button { +.cancel-button { padding: 0.75rem 1.5rem; border: none; border-radius: 0.375rem; @@ -359,9 +357,6 @@ font-weight: 500; cursor: pointer; transition: all 0.2s; -} - -.cancel-button { background: #f3f4f6; color: #374151; } @@ -370,42 +365,6 @@ background: #e5e7eb; } -.submit-button { - background: linear-gradient(to right, #6366f1, #8b5cf6); - color: white; - flex: 1; -} - -.submit-button:hover:not(:disabled) { - transform: translateY(-1px); - box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); -} - -.submit-button:disabled { - opacity: 0.5; - cursor: not-allowed; -} - -.delete-button { - background: #ef4444; - color: white; - padding: 0.75rem; - display: flex; - align-items: center; - justify-content: center; - min-width: 44px; - width: 44px; -} - -.delete-button:hover:not(:disabled) { - background: #dc2626; -} - -.delete-button:disabled { - opacity: 0.5; - cursor: not-allowed; -} - .loading { text-align: center; padding: 3rem 1rem;