Skip to content

Commit

Permalink
fix(style): add CSS reset to remove border, margin, padding
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed May 19, 2024
1 parent 01431da commit 9e743bc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
* {
border: 0;
margin: 0;
padding: 0;
}

html,
body {
width: 100%;
height: 100%;
overflow: hidden;
}

0 comments on commit 9e743bc

Please sign in to comment.