summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/scss/folder-test2/variables.scss
blob: 2d06d36650f3e706f92dcc942cbe711e343b79f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$blue: #3bbfce;
$margin: 8px;

.content-navigation {
	border-color: $blue;
	$blue: #0000ff;
	color: $blue;
}

.border {
	padding: $margin;
	margin: $margin;
	border-color: $blue;
}