Skip to content

Commit

Permalink
Merge pull request #59 from basementstudio/mati/fixes
Browse files Browse the repository at this point in the history
Fix positioning on mobile
  • Loading branch information
matiasperz authored Oct 16, 2023
2 parents 24f1498 + ffddff8 commit d793494
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@

display: flex;
flex-direction: column;
width: 55vw;
width: 90vw;
max-width: 800px;
height: auto;
max-height: 50vh;
position: fixed;
Expand Down Expand Up @@ -325,3 +326,10 @@
background: #ec5b29aa;
z-index: 999;
}

@media (max-width: 768px) {
.root {
left: 50%;
transform: translateX(-50%);
}
}

1 comment on commit d793494

@vercel
Copy link

@vercel vercel bot commented on d793494 Oct 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.