fix: auto-resolve project name from image, fix global scroll

- Auto-fill project name from image path when browsing
- Prevent html/body scroll jump with overflow: hidden
This commit is contained in:
2026-03-28 14:22:49 +03:00
parent 74127b89d7
commit 777cafb622
2 changed files with 15 additions and 4 deletions
+5 -4
View File
@@ -3,13 +3,14 @@
/* ── Base Styles ──────────────────────────────────────────────────── */
html {
html, body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
font-family: var(--font-family-sans);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
background-color: var(--surface-page);
color: var(--text-primary);
}