Skip to content

Commit

Permalink
fix: severe layout issue in desktop devices
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaclen committed Jun 8, 2023
1 parent a8e1e64 commit 0b95eb6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Artwork.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<style lang="scss">
div.artwork {
position: fixed;
position: absolute;
inset: 0;
z-index: 0;
opacity: 1;
Expand Down
7 changes: 7 additions & 0 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@
margin: unset;
color: var(--color-neutral-100);
background-color: var(--color-neutral-1000);
display: flex;
align-items: center;
justify-content: center;
width: 100dvw;
min-width: 320px;
height: 100dvh;
}
div.layout {
Expand Down

0 comments on commit 0b95eb6

Please sign in to comment.