Skip to content

Commit

Permalink
Comment out box sizing for pseudo elements
Browse files Browse the repository at this point in the history
  • Loading branch information
otacke committed May 7, 2024
1 parent 72d8668 commit 5a4290c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/styles/h5p-boilerplate-snordian.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ html {
box-sizing: border-box;
}

*, *:before, *:after {
* {
box-sizing: inherit;
}

// These are nice to have, but can cause trouble in the H5P editor
// *:before, *:after {
// box-sizing: inherit;
// }

.h5p-boilerplate-snordian {
background-color: $color-background;
color: $color-text;
Expand Down

0 comments on commit 5a4290c

Please sign in to comment.