ModusCreateOrg/budgeting

View on GitHub
app/theme/main.scss

Summary

Maintainability
Test Coverage
@import 'theme/variables';

html,
body {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0 0.8em;
  font-family: $font-default;
  font-size: 16px;
}

@media only screen and (min-width: 48em) {
  body {
    padding: 0 3em;
  }
}

:global(#root) {
  height: 100%;
}

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