Skip to content

Commit

Permalink
set min-w 320 px
Browse files Browse the repository at this point in the history
  • Loading branch information
nemanjam committed Dec 6, 2024
1 parent 2c0fcd1 commit 057a1d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/layouts/Base.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ const { metadata } = Astro.props as BaseProps;

<html lang="en">
<BaseHead {metadata} />
<body class="relative flex flex-col min-h-screen bg-base-100 transition-colors duration-500">
<body
class="relative flex flex-col min-h-screen min-w-80 bg-base-100 transition-colors duration-500"
>
<Header />
<slot />
<Footer />
Expand Down

0 comments on commit 057a1d9

Please sign in to comment.