Skip to content

Commit

Permalink
Further improve mobile rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
SavageCore committed Sep 23, 2023
1 parent b568dee commit 08773ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"dev:remote": "vite --host",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
Expand Down
8 changes: 7 additions & 1 deletion src/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,16 @@
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 90vh;
min-height: 100vh;
}

.disabled {
opacity: 0.5;
pointer-events: none;
}

@media (max-width: 768px) {
.container {
min-height: 80vh;
}
}

0 comments on commit 08773ac

Please sign in to comment.