From ebb6f0a6e1d742fdcad3011bc41b9f7923bd0cae Mon Sep 17 00:00:00 2001 From: Farihashifa15 Date: Sun, 10 May 2026 19:41:40 +0530 Subject: [PATCH 1/3] Improved submit button hover effect --- static/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index 188419b8..e3ca2825 100644 --- a/static/style.css +++ b/static/style.css @@ -832,7 +832,7 @@ select:focus { } .btn-submit:hover { opacity: 0.93; - transform: translateY(-1px); + transform: translateY(-3px); box-shadow: 0 6px 28px rgba(35, 53, 194, 0.42); } .btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; } From 002f624e949124529bf361396c6f4e8705f71aae Mon Sep 17 00:00:00 2001 From: Farihashifa15 Date: Sun, 10 May 2026 19:58:50 +0530 Subject: [PATCH 2/3] Fixed vertical alignment of form labels on mobile --- static/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/static/style.css b/static/style.css index e3ca2825..9420c5ae 100644 --- a/static/style.css +++ b/static/style.css @@ -665,6 +665,7 @@ label { color: var(--gray-700); margin-bottom: 8px; letter-spacing: 0.01em; + text-align: left; } /* Skill input wrap */ From 4b618225acc82829817f436fb44eb9925346af8c Mon Sep 17 00:00:00 2001 From: Farihashifa15 Date: Sat, 6 Jun 2026 17:24:17 +0530 Subject: [PATCH 3/3] fix: increase z-index of skills dropdown to appear above skill tags --- static/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/style.css b/static/style.css index 9420c5ae..ba98753c 100644 --- a/static/style.css +++ b/static/style.css @@ -1534,3 +1534,8 @@ select:focus { .container { padding: 0 20px; } .section-sub { margin-bottom: 40px; } } +/* Fix: dropdown z-index above skill tags */ +.skills-suggestions { + position: absolute; + z-index: 50; +}