Fix lint warnings on stats scss

This commit is contained in:
decabeza
2019-03-26 00:47:50 +01:00
committed by Javi Martín
parent f6701373c4
commit fdeef72189

View File

@@ -42,31 +42,31 @@
} }
&.total-participants::before { &.total-participants::before {
content: image-url('stats_users.png'); content: image-url("stats_users.png");
} }
&.male::before { &.male::before {
content: image-url('stats_man.png'); content: image-url("stats_man.png");
} }
&.female::before { &.female::before {
content: image-url('stats_woman.png'); content: image-url("stats_woman.png");
} }
&.total-investments::before { &.total-investments::before {
content: image-url('stats_investments.png'); content: image-url("stats_investments.png");
} }
&.web::before { &.web::before {
content: image-url('stats_web.png'); content: image-url("stats_web.png");
} }
&.booth::before { &.booth::before {
content: image-url('stats_booth.png'); content: image-url("stats_booth.png");
} }
&.mail::before { &.mail::before {
content: image-url('stats_mail.png'); content: image-url("stats_mail.png");
} }
.content { .content {
@@ -142,15 +142,15 @@
} }
&.web::before { &.web::before {
content: image-url('stats_web.png'); content: image-url("stats_web.png");
} }
&.booth::before { &.booth::before {
content: image-url('stats_booth.png'); content: image-url("stats_booth.png");
} }
&.mail::before { &.mail::before {
content: image-url('stats_mail.png'); content: image-url("stats_mail.png");
} }
} }
@@ -163,11 +163,11 @@
} }
&.male::before { &.male::before {
content: image-url('stats_man.png'); content: image-url("stats_man.png");
} }
&.female::before { &.female::before {
content: image-url('stats_woman.png'); content: image-url("stats_woman.png");
} }
} }
} }