/// Does a hard reset of the styles on an element.
///
/// @group Utilities
@mixin reset {
  -webkit-appearance: none;
  appearance: none;
  display: initial;
  padding: 0;
  border: 0;
  margin: 0;
  background: padding-box border-box;
  box-shadow: none;
  font: inherit;
  text-shadow: none;
}
