mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-17 23:07:48 +00:00
fix(ui): preserve LTR left sidebar in RTL
Keep the left sidebar geometry stable across RTL locales and retain the default settings-tab order. Refs #17
This commit is contained in:
+4
-1
@@ -958,7 +958,10 @@ function App() {
|
||||
marginInlineEnd: isSidebarVisible || !isSidebarOnRight ? 0 : -sidebarWidth
|
||||
}}
|
||||
>
|
||||
<div className="app-sidebar-panel h-full w-full">
|
||||
<div
|
||||
className="app-sidebar-panel h-full w-full"
|
||||
dir={isSidebarOnRight ? undefined : 'ltr'}
|
||||
>
|
||||
<Sidebar
|
||||
selectedFilter={filter}
|
||||
onSelectFilter={(f) => {
|
||||
|
||||
Reference in New Issue
Block a user