Skip to content

Commit

Permalink
fix: remove page margin using !important in all globals.scss files
Browse files Browse the repository at this point in the history
refs LIIKUNTA-620 ("margin: 0" wasn't enough -> "margin: 0 !important")
  • Loading branch information
karisal-anders committed Feb 29, 2024
1 parent a0b6067 commit 76e978a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/events-helsinki/src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ html,
body,
#__next,
main {
margin: 0 !important;
height: 100%;
color: var(--color-primary-black);
}
Expand Down
1 change: 1 addition & 0 deletions apps/hobbies-helsinki/src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ html,
body,
#__next,
main {
margin: 0 !important;
height: 100%;
color: var(--color-black-90);
}
Expand Down
2 changes: 1 addition & 1 deletion apps/sports-helsinki/src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ html,
body,
#__next,
main {
margin: 0;
margin: 0 !important;
height: 100%;
color: var(--color-black-90);
}
Expand Down
1 change: 1 addition & 0 deletions packages/components/src/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
html,
#__next,
main {
margin: 0 !important;
height: 100%;
}

Expand Down

0 comments on commit 76e978a

Please sign in to comment.