summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/scss/listmodify.scss
blob: 814f3156f845a61d4ed40c89bd8398f38278d26a (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
$list : .v-button, .v-panel, .v-label;

$basics : remove($list, .v-panel);

@each $component in $basics{
	.#{$component} {
		font-size: 12px;
	}
}

$items : append($basics, .v-textfield);

@each $component in $items{
	.#{$component} {
		font-color: red;
	}
}

$contains : contains($items, .v-button);

@if($contains){
	.v-button {
		background-color: black;
	}
}