Drupal 8 Site using Vue
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
327 B

  1. @import 'fonts';
  2. @import 'normalize';
  3. html {
  4. box-sizing: border-box;
  5. }
  6. // https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
  7. * {
  8. box-sizing: inherit;
  9. &::before,
  10. &::after {
  11. box-sizing: inherit;
  12. }
  13. }
  14. body {
  15. width: 100%;
  16. margin: 0;
  17. font-size: 100%;
  18. overflow-x: hidden;
  19. }