make background-image url relative
fixes october-icon.png resource not being found when referenced absolutely. Caused by baseURL (config.toml) containing a path.
This commit is contained in:
parent
095b7f597a
commit
e83f9be636
|
@ -181,7 +181,6 @@ body.colorscheme-dark .avatar img {
|
||||||
}
|
}
|
||||||
|
|
||||||
.cheat-october-list + ul > li > p:first-child::before {
|
.cheat-october-list + ul > li > p:first-child::before {
|
||||||
/* list-style-image: url(/images/logos/october-icon.png); */
|
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -191,5 +190,5 @@ body.colorscheme-dark .avatar img {
|
||||||
right: 0;
|
right: 0;
|
||||||
background-size: contain;
|
background-size: contain;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-image: url(/images/logos/october-icon.png);
|
background-image: url(../images/logos/october-icon.png);
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue