@mixin minibutton($top: true) {
	color: $white;
	height: 20px;
	background-color: $primary-color;
	@if($top) {
		border-top-left-radius: 4px;
		border-top-right-radius: 4px;
	} @else {
		border-bottom-left-radius: 4px;
		border-bottom-right-radius: 4px;
	}
	text-transform: lowercase;
}