feat(editor): fixed toolbar preference (#2185)

* feat(editor): fixed toolbar preference

* remove key

* cleanup translation strings

* update axios
This commit is contained in:
Philip Okugbe
2026-05-09 13:27:03 +01:00
committed by GitHub
parent 2d8b470495
commit bdc369fce0
33 changed files with 1376 additions and 127 deletions
@@ -27,23 +27,3 @@
background: light-dark(var(--mantine-color-gray-4), var(--mantine-color-dark-5))
}
}
.skipLink {
position: fixed;
left: 8px;
top: 8px;
padding: 8px 12px;
background: var(--mantine-color-blue-6);
color: #fff;
border-radius: 4px;
text-decoration: none;
z-index: 1000;
transform: translateY(-150%);
&:focus {
transform: translateY(0);
outline: 2px solid var(--mantine-color-blue-3);
}
}
@@ -81,11 +81,7 @@ export default function GlobalAppShell({
const showGlobalSidebar = !isSpaceRoute && !isSettingsRoute && !isAiRoute;
return (
<>
<a href="#main-content" className={classes.skipLink}>
{t("Skip to main content")}
</a>
<AppShell
<AppShell
header={{ height: 45 }}
navbar={{
width: isSpaceRoute ? sidebarWidth : 300,
@@ -158,6 +154,5 @@ export default function GlobalAppShell({
</AppShell.Aside>
)}
</AppShell>
</>
);
}