Skip to content

Commit

Permalink
Added overflow hidden to parent pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfox committed Jul 14, 2024
1 parent 5a7aaf6 commit 758b89f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { RouterLink, RouterView } from "vue-router";

<template>
<div class="flex relative overflow-hidden">
<div>
<div class="overflow-hidden">
<RouterView />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Navigation from "../components/Navigation.vue";
</script>

<template>
<main>
<main class="overflow-hidden">
<Navigation />
<Gallery />
</main>
Expand Down

0 comments on commit 758b89f

Please sign in to comment.