aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss/control-directives.scss
blob: 3da1d337cc906c72f90b837f890fbda8d08d934b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@each $animal in puma, sea-slug, egret, salamander {
  .#{$animal}-icon #animal, .menu {
    background-image: url('/images/#{$animal}.png');
    @include logo(10px);
  }
}

@mixin logo($size){
	font: {
		size: $size;
		color: blue;		
	}
}