fix: use fixed-position overlay for FAB session input (mobile visibility)

This commit is contained in:
Brian Krabach
2026-03-30 01:45:51 -07:00
parent dbb8b2bd73
commit 9978544dc1
3 changed files with 136 additions and 2 deletions
+19 -1
View File
@@ -821,6 +821,10 @@ body {
.session-sidebar {
transition: none;
}
.new-session-fab:active {
transform: none;
}
}
/* ============================================================
@@ -1222,13 +1226,27 @@ body {
cursor: pointer;
z-index: 100;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
transition: transform 150ms ease, box-shadow 150ms ease;
transition: transform 150ms ease;
}
.new-session-fab:active {
transform: scale(0.95);
}
.new-session-fab:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
/* Fixed-position input overlay triggered by mobile FAB —
appended to body so position:fixed escapes overflow:hidden on views */
.fab-input-overlay {
position: fixed;
bottom: 80px;
right: 16px;
z-index: 200;
}
/* ============================================================
Responsive overlay sidebar at <960px
============================================================ */