mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +00:00
fix media styling on mobile
This commit is contained in:
@@ -99,7 +99,7 @@ export function Main({ children }) {
|
||||
export function Sidebar({ children }) {
|
||||
const open = appShellStore((store) => store.sidebarOpen);
|
||||
const close = appShellStore((store) => store.closeSidebar);
|
||||
const ref = useClickOutside(close, null, [document.getElementById("header")]);
|
||||
const ref = useClickOutside(close, ["mouseup", "touchend"]); //, [document.getElementById("header")]);
|
||||
const [location] = useLocation();
|
||||
|
||||
const closeHandler = () => {
|
||||
|
||||
Reference in New Issue
Block a user