Skip to content

Commit

Permalink
Fix: CSS layer order in Next.js app (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmn authored Dec 10, 2023
1 parent 90dea1b commit dbc49fb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions apps/nextjs-example/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
* LICENSE file in the root directory of this source tree.
*/

* {
box-sizing: border-box;
padding: 0;
margin: 0;
@layer reset {
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
}

0 comments on commit dbc49fb

Please sign in to comment.