Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
iozcelik committed Apr 18, 2022
2 parents eef0851 + cf7cfb8 commit 61c66d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const { pageTitle } = Astro.props;
<div class="drawer drawer-mobile">
<input id="my-drawer" type="checkbox" class="drawer-toggle" />
<div class="drawer-content flex justify-center lg:justify-start">
<div class="w-[70vw] max-w-screen-lg lg:pt-14 lg:p-4">
<div class="sm:w-[70vw] max-w-screen-lg lg:pt-14 lg:p-4">
<MobileNavbar />
<div class="flex-1 p-3 md:py-[35]">
<div class="space-y-2 md:space-y-6">
Expand All @@ -29,7 +29,7 @@ const { pageTitle } = Astro.props;
</div>
<div class="drawer-side">
<label for="my-drawer" class="drawer-overlay"></label>
<div class="overflow-y-auto flex lg:justify-end w-[30vw]">
<div class="overflow-y-auto flex lg:justify-end w-fit sm:w-[30vw]">
<div class="w-fit p-3 lg:m-6 bg-base-100">
{Config.siteImagePath && <SiteImage />}
<h1 class="text-2xl p-2 pl-4"><a href="/">{Config.siteTitle}</a></h1>
Expand Down

0 comments on commit 61c66d5

Please sign in to comment.