summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/fontface-in-mixin_new.scss
blob: 22356f724e5ecf9406c9e7429dac7fe1d62380a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@mixin debug-globals {
	@font-face {
		font-family: 'vdebugfont';
		src:url('fonts/font.eot');
		src:url('fonts/font.eot?#iefix') format('embedded-opentype'),
			url('fonts/font.woff') format('woff'),
			url('fonts/font.ttf') format('truetype'),
			url('fonts/font.svg#fontawesome') format('svg');
		font-weight: normal;
		font-style: normal;
	}

}

p {
	@include debug-globals;
}