diff --git a/src/App.vue b/src/App.vue index 69d96733..8949e654 100644 --- a/src/App.vue +++ b/src/App.vue @@ -24,11 +24,6 @@ body { border-radius: 2em; } -*::-webkit-scrollbar { - width: 8px; - height: 8px; -} - *::-webkit-scrollbar-thumb { background-color: #ddd; background-clip: padding-box; diff --git a/src/layouts/BasicLayout.vue b/src/layouts/BasicLayout.vue index 6026fe36..9bc697ec 100644 --- a/src/layouts/BasicLayout.vue +++ b/src/layouts/BasicLayout.vue @@ -25,6 +25,7 @@
@@ -139,6 +140,10 @@ const router = useRouter(); const moreMenuVisible = ref(false); const moreMenuRootVisible = ref(false); + +const handleRouteToProfile = () => { + router.push({ name: "Profile" }); +};