/// _common-reset.scss - Common definitions for CSS baseline reset.

/// Defines that all elements will use border-box to calculate dimensions.
*,
*::before,
*::after {
  box-sizing: border-box;
}
