Mayland-blocks: Fix relative path (#4010)

* fix relative path to post-meta SVG assets
This commit is contained in:
Rolf Allard van Hagen 2021-06-09 21:22:23 +02:00 committed by GitHub
parent c633342220
commit 9c68affbc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -47,19 +47,19 @@ img {
}
.post-meta .wp-block-post-author:before {
background: url(assets/svg/post-author.svg) no-repeat;
background: url(svg/post-author.svg) no-repeat;
}
.post-meta .wp-block-post-date:before {
background: url(assets/svg/post-date.svg) no-repeat;
background: url(svg/post-date.svg) no-repeat;
}
.post-meta .wp-block-post-hierarchical-terms:before {
background: url(assets/svg/post-category.svg) no-repeat;
background: url(svg/post-category.svg) no-repeat;
}
.post-meta .wp-block-post-tags:before {
background: url(assets/svg/post-tag.svg) no-repeat;
background: url(svg/post-tag.svg) no-repeat;
}
/*# sourceMappingURL=theme.css.map */

View file

@ -50,17 +50,17 @@ img {
}
.post-meta .wp-block-post-author:before {
background: url(assets/svg/post-author.svg) no-repeat;
background: url(svg/post-author.svg) no-repeat;
}
.post-meta .wp-block-post-date:before {
background: url(assets/svg/post-date.svg) no-repeat;
background: url(svg/post-date.svg) no-repeat;
}
.post-meta .wp-block-post-hierarchical-terms:before {
background: url(assets/svg/post-category.svg) no-repeat;
background: url(svg/post-category.svg) no-repeat;
}
.post-meta .wp-block-post-tags:before {
background: url(assets/svg/post-tag.svg) no-repeat;
background: url(svg/post-tag.svg) no-repeat;
}