Skip to content

Commit

Permalink
Box sizing border-box added to all frontend elements
Browse files Browse the repository at this point in the history
  • Loading branch information
sazedul-haque committed Dec 26, 2023
1 parent 5165d9e commit 9d733df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions assets/scss/front/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

&.tutor-frontend * {
box-sizing: border-box;
&.tutor-frontend {
*, *::before, *::after {
box-sizing: border-box;
}
}
}

Expand Down

0 comments on commit 9d733df

Please # to comment.