印刷用のCSS

mixin 用の設定

@mixin print {
	@media print {
		@content;
	}
}

呼び出し

@include print {
	header {
		display: none;
	}
}