Sha256: 43c9d764f93e063625a479579e348a66eb1e7727aea1690b94b58216439700d8

Contents?: true

Size: 612 Bytes

Versions: 2

Compression:

Stored size: 612 Bytes

Contents

// 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: $color-white;
  overflow-x: hidden;
}

// Hack for clearfixes
.lt-ie9 {
  * {
    filter: none !important; /* stylelint-disable-line declaration-no-important */
  }
}

// for IE < 11, see:
// <http://caniuse.com/#feat=hidden>
[hidden] {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

*:focus,
.usa-focus {
  outline: $focus-outline;
  outline-offset: $focus-spacing;
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
uswds-rails-1.4.1 vendor/assets/stylesheets/uswds/core/_base.scss
uswds-rails-1.4.0 vendor/assets/stylesheets/uswds/core/_base.scss