Correct problem with relative image urls

This commit is contained in:
Andrew Miner
2017-09-25 21:38:48 -07:00
parent 86f83e13e4
commit 99fb8ef26b
3 changed files with 11 additions and 11 deletions
+5 -5
View File
@@ -80,35 +80,35 @@
white-space: nowrap;
}
&.overnight {
background-image: url("../images/overnight.png");
background-image: url("/images/overnight.png");
&:after {
color: #3700A3;
content: "overnight";
}
}
&.gluten-free {
background-image: url("../images/gluten-free.png");
background-image: url("/images/gluten-free.png");
&:after {
color: #ECB629;
content: "no gluten";
}
}
&.low-carb {
background-image: url("../images/low-carb.png");
background-image: url("/images/low-carb.png");
&:after {
color: #A83533;
content: "low carb";
}
}
&.serving {
background-image: url("../images/serving.png");
background-image: url("/images/serving.png");
&:after {
color: black;
content: "serves";
}
}
&.vegetarian {
background-image: url("../images/vegetarian.png");
background-image: url("/images/vegetarian.png");
&:after {
color: #0EA822;
content: "veggie";