aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss/_partial-for-import.scss
blob: 96af1c78ff8aca886e6e08be371a3cc76618a8ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$foo : red;

@mixin caption {
	.caption {
		$side: right;
		border: 1px solid black;
		background: #ff0000;
		padding: 10px;
		margin: 10px;
	}
}

@include caption;