Skip to content

Commit

Permalink
fix: layout for laptop
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSciFier committed May 12, 2024
1 parent 83bcf5e commit dd98e5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/layouts/Main/MainLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { useMediaQuery } from "react-responsive";

export default function MainLayout() {
const isMobile = useMediaQuery({
query: "(max-width: 1024px)",
query: "(max-width: 1440px)",
});
const [menuOpened, setMenuOpened] = useState(!isMobile);
let leftMenuMobile = `fixed z-50 w-80 h-full transition-transform ${
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/Settings/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function About() {
return (
<div>
<div className="font-medium mt-3">QBitCloud UI</div>
<div>v 1.0</div>
<div>v 1.0.2</div>
<a
className="text-primary hover:underline"
href="https://github.com/AlexSciFier/QBitCloudUI"
Expand Down

0 comments on commit dd98e5b

Please sign in to comment.