From d5928a41948598a11b9ac9d555739fc83d257f89 Mon Sep 17 00:00:00 2001 From: tylrx404 Date: Sat, 6 Jun 2026 17:14:40 +0530 Subject: [PATCH] fix: resolve skills dropdown stacking issue --- static/style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/static/style.css b/static/style.css index ae3e9a03..060d6350 100644 --- a/static/style.css +++ b/static/style.css @@ -1483,11 +1483,15 @@ html[data-theme="dark"] .theme-toggle-label::before { text-align: left; } -/* Form groups */ .form-group { margin-bottom: 24px; } +.form-card form > .form-group:first-child { + position: relative; + z-index: 1; +} + .form-row { display: grid; grid-template-columns: 1fr 1fr; @@ -1507,6 +1511,7 @@ label { /* Skill input container */ .skill-input-wrap { position: relative; + z-index: 1100; border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--gray-50);