Skip to content

Commit

Permalink
fix: LayoutMain
Browse files Browse the repository at this point in the history
  • Loading branch information
ufaboy committed Jul 8, 2024
1 parent 0893d99 commit 447f646
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lib-vue",
"private": true,
"version": "1.10.1",
"version": "1.10.2",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/LayoutMain.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ document.documentElement.classList.add('scrollbar-gutter');
<template>
<div id="layout" class="relative flex min-h-full flex-col lg:flex-row">
<TheSidebar class="" :expanded="sidebarShow" @toggle-sidebar="sidebarShow = !sidebarShow" />
<router-view :progress="scrollingProgress.progress" class="relative px-2 lg:left-40" />
<router-view :progress="scrollingProgress.progress" class="relative px-2 lg:left-80" />
<BtnScrollToTop
v-if="btnTopShow"
class="fixed bottom-20 right-10 z-10 flex size-10 items-center justify-center"
Expand Down

0 comments on commit 447f646

Please sign in to comment.