presidential-innovation-fellows/dap-guide

View on GitHub
_sass/core/_base.scss

Summary

Maintainability
Test Coverage
/* apply a natural box layout model to all elements, but allowing components to change */

html {
  box-sizing: border-box;
}

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

body {
  background-color: #ffffff;
}

.lt-ie9 {
  // Hack for clearfixes
  * {
    filter: none !important;
  }
}

[aria-hidden=true] {
  display: none !important;
}