// Comment out any mixins you don't want.

@import "_breakpoints";
@import "_icons";
@import "_spacing";

@mixin centerer($horizontal: true, $vertical: true) {
	position: absolute;
	@if ($horizontal and $vertical) {
		top: 50%;
		left: 50%;

		transform: translate(-50%, -50%);
	} @else if ($horizontal) {
		left: 50%;

		transform: translate(-50%, 0);
	} @else if ($vertical) {
		top: 50%;

		transform: translate(0, -50%);
	}
}