aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/mixin-empty-paramlist.scss
blob: 27033ba850b1280da2f066a5c3c0fdc0f3c8e319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@mixin emptyarglist1(){
	body{
		color: blue;
	}
}

@mixin emptyarglist2(){
	h1{
		text-align:center;
	}
}

@mixin emptyarglist3{
	p{
		font-style:italic;
	}	   
}

@mixin emptyarglist4{
	table{
		width: 100%;
	}
}

@include emptyarglist1();
@include emptyarglist2;
@include emptyarglist3();
@include emptyarglist4;