Skip to content

Commit

Permalink
feat: github pages deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
altrusl committed Oct 31, 2023
1 parent aed509e commit 2854a57
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/assets/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ body {
display: flex;
place-items: center;
min-width: 320px;
background-color: white;
// min-height: 100vh;
a {
font-weight: 500;
Expand Down
1 change: 1 addition & 0 deletions src/components/AppHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
height: 2em;
padding: 15px 20px;
background-color: #eee;
z-index: 3;
.title {
font-size: 1.5em;
}
Expand Down
7 changes: 4 additions & 3 deletions src/components/TouchSlideout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ onUnmounted(() => {
.touch-slideout {
z-index: 9999;
position: fixed;
top: 0;
// top: 0;
left: 0;
height: 100%;
will-change: transform;
Expand All @@ -245,14 +245,15 @@ onUnmounted(() => {
overflow-y: overlay;
height: 100%;
width: 100%;
background: hsl(2, 57%, 40%);
// background: hsl(2, 57%, 40%);
background-color: #eee;
}
.overlay {
background: #000;
position: fixed;
width: 100%;
height: 100%;
top: 0;
// top: 0;
left: 0;
opacity: 0;
will-change: opacity;
Expand Down
5 changes: 3 additions & 2 deletions src/layouts/MainLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ import TouchSlideout from "@/components/TouchSlideout.vue";
import AppHeader from "@/components/AppHeader.vue";
import AppFooter from "@/components/AppFooter.vue";
import AppSidebar from "@/components/AppSidebar.vue";
import { useAppConfig } from "@/composables/useAppConfig";
const { isDrawerOpen } = useAppConfig();
// import { useAppConfig } from "@/composables/useAppConfig";
// const { isDrawerOpen } = useAppConfig();
// const drawerStatus = ref(true);
// function toggleDrawer() {
Expand Down

0 comments on commit 2854a57

Please sign in to comment.