// =============================================================================
// :: Button - (no classes)
// =============================================================================
button {
	outline: none;

	/**
	 * Slicing applied when there is no class applied. For example: rendered in
	 * a WYSIWYG.
	 */
	// &:not([class]) {}
}

// =============================================================================
// :: States
// =============================================================================
button {

	&:hover,
	&:active,
	&:focus {
		outline: none;
	}
}
