Skip to content

Commit

Permalink
fix: lessons menu not scrolling on mobile (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericknathan committed Sep 23, 2023
1 parent 2bf602d commit 9c725af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/app/components/organisms/DefaultAside.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ watch(isLesson, async () => {

<template>
<aside
class="bg-white z-20 md:z-0 md:bg-inherit fixed -left-[270px] transition-all top-0 min-h-screen md:relative md:left-0 flex w-[270px] min-w-[270px] flex-col border-r border-solid border-zinc-200 overflow-hidden"
class="bg-white z-20 md:z-0 md:bg-inherit fixed -left-[270px] transition-all top-0 h-screen overflow-y-auto md:relative md:left-0 flex w-[270px] min-w-[270px] flex-col border-r border-solid border-zinc-200 overflow-hidden"
:class="{ 'left-0': defaultAsideStore.opened }"
>
<div class="w-full border-b border-solid border-zinc-200 p-3">
Expand Down

0 comments on commit 9c725af

Please sign in to comment.