Color bar & option input components: syntax fixes

This commit is contained in:
María Checa 2016-02-18 20:06:30 +01:00
parent 89f0e13fae
commit 3a2513e2a2
2 changed files with 5 additions and 5 deletions

View File

@ -64,7 +64,7 @@
left: 0; left: 0;
border: 1px solid rgba(0, 0, 0, 0.2); border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px; border-radius: 6px;
content:""; content: '';
} }
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;

View File

@ -81,14 +81,14 @@
box-sizing: content-box; box-sizing: content-box;
&::after { &::after {
color: $cHintText;
padding: 9px; padding: 9px;
content: "·"; color: $cHintText;
content: '·';
} }
&:last-child { &:last-child {
&::after { &::after {
padding: 0; padding: 0;
content: ""; content: '';
} }
} }
} }