Skip to content

Commit

Permalink
Try to fix padding
Browse files Browse the repository at this point in the history
  • Loading branch information
wrose504 committed Mar 22, 2024
1 parent 4c1f901 commit 19f1f51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion autofill/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@

html {
margin: 0;
padding: 0;
}

body {
margin: var(--basic-size) auto;
margin: 0 auto;
padding: var(--basic-size) 0;
max-width: min(800px, calc(100vw - 2 * var(--basic-size)));
max-height: calc(100vh - 2 * var(--basic-size));
display: flex;
Expand Down

0 comments on commit 19f1f51

Please sign in to comment.