Skip to content

Commit

Permalink
fix: min width of app
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodylow committed Apr 1, 2024
1 parent 524c9c1 commit 7db3308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pub fn App() -> impl IntoView {
<Meta name="theme-color" content="#ffffff" />

<div class="h-[100dvh]">
<div class="mx-auto w-full h-full flex flex-col lg:max-w-[600px] p-6">
<div class="mx-auto w-full h-full flex flex-col min-w-[400px] lg:max-w-[600px] p-6">
<header class="flex justify-center mb-20">
<Logo class="bg-red border-1 border-blue"/>
</header>
Expand Down

0 comments on commit 7db3308

Please sign in to comment.