Changeset 0.37.4 (#216)

Co-authored-by: gobha <jasafpro@gmail.com>
Co-committed-by: gobha <jasafpro@gmail.com>
This commit is contained in:
2026-03-21 01:15:09 +00:00
committed by xcaliber
parent fc43618501
commit 05b5affdac
7 changed files with 294 additions and 4 deletions

View File

@@ -107,3 +107,33 @@
text-align: center;
background: var(--bg-surface);
}
/* ── Surface viewport ────────────────────── */
.sw-surface-viewport {
flex: 1;
position: relative;
overflow: auto;
display: flex;
flex-direction: column;
}
/* ── User menu trigger ───────────────────── */
.sw-user-menu__trigger {
display: inline-flex;
align-items: center;
background: none;
border: none;
cursor: pointer;
padding: 2px;
border-radius: 50%;
transition: box-shadow var(--transition, 0.15s ease);
}
.sw-user-menu__trigger:hover {
box-shadow: 0 0 0 2px var(--accent-dim);
}
.sw-user-menu__trigger:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}