Skip to content

Commit

Permalink
Merge pull request #570 from ElectronicBlueberry/fix-double-scroll-bar
Browse files Browse the repository at this point in the history
Fix page scrolls despite children scrolling
  • Loading branch information
mvdbeek authored Oct 11, 2024
2 parents acb8838 + 2baf5ca commit 1ae2973
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions website/app.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<div>
<div class="h-dvh flex flex-col">
<NuxtLoadingIndicator />
<IWCHeader />
<main>
<main class="flex overflow-hidden">
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
Expand Down
2 changes: 1 addition & 1 deletion website/components/WorkflowList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function selectWorkflow(workflow: Workflow) {
</script>

<template>
<div class="flex h-screen">
<div class="flex">
<!-- Left sidebar -->
<div class="w-1/4 p-4 overflow-y-auto">
<div class="sticky top-4 h-16">
Expand Down

0 comments on commit 1ae2973

Please sign in to comment.