Skip to content

Commit

Permalink
fix: make sidebars bigger, adjust mobile breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkolenz committed Feb 5, 2024
1 parent 918e7cd commit ff90097
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { setState, useStore } from "./store.js";

export default function App() {
const sidebarWidth = useStore((state) => state.sidebarWidth);
const isMobile = useMediaQuery(useTheme().breakpoints.down("md"));
const isMobile = useMediaQuery(useTheme().breakpoints.down("lg"));

const leftSidebarOpen = useStore((state) => state.leftSidebarOpen);
const rightSidebarOpen = useStore((state) => state.rightSidebarOpen);
Expand Down
2 changes: 1 addition & 1 deletion src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const initialState: State = {
prettifyJson: true,
imageScale: 3,
selectedResource: "1",
sidebarWidth: 300,
sidebarWidth: 400,
headerHeight: 64,
};

Expand Down

0 comments on commit ff90097

Please sign in to comment.