Skip to content

Commit

Permalink
Theme: Correct path to post meta SVGs.
Browse files Browse the repository at this point in the history
The built stylesheet was moved in 4c72a0e, and these should have been updated at that time.
  • Loading branch information
iandunn committed Oct 15, 2021
1 parent fb7d2f3 commit 8dad00c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions source/wp-content/themes/wporg-news-2021/sass/post/_meta.scss
Expand Up @@ -24,22 +24,22 @@
}

.wp-block-post-author:before {
-webkit-mask-image: url(svg/post-author.svg);
mask-image: url(svg/post-author.svg);
-webkit-mask-image: url(assets/svg/post-author.svg);
mask-image: url(assets/svg/post-author.svg);
}

.wp-block-post-date:before {
-webkit-mask-image: url(svg/post-date.svg);
mask-image: url(svg/post-date.svg);
-webkit-mask-image: url(assets/svg/post-date.svg);
mask-image: url(assets/svg/post-date.svg);
}

.wp-block-post-hierarchical-terms:before {
-webkit-mask-image: url(svg/post-category.svg);
mask-image: url(svg/post-category.svg);
-webkit-mask-image: url(assets/svg/post-category.svg);
mask-image: url(assets/svg/post-category.svg);
}

.wp-block-post-tags:before {
-webkit-mask-image: url(svg/post-tag.svg);
mask-image: url(svg/post-tag.svg);
-webkit-mask-image: url(assets/svg/post-tag.svg);
mask-image: url(assets/svg/post-tag.svg);
}
}

0 comments on commit 8dad00c

Please sign in to comment.