12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- .post-meta {
- &.wp-block-group {
- flex-direction: column;
- align-items: start;
- }
- .is-style-post-date-icon,
- .is-style-post-category-icon,
- .is-style-post-tag-icon {
- margin-bottom: 0.5em;
- overflow-wrap: normal;
- padding-left: calc( 18px + var(--wp--custom--gap--baseline));
- position: relative;
- word-break: normal;
- }
- }
- .is-style-post-date-icon,
- .is-style-post-category-icon,
- .is-style-post-tag-icon {
- &:before {
- height: 18px;
- width: 18px;
- position: absolute;
- left: 0;
- top: 3px;
- }
- }
- .is-style-post-date-icon:before {
- -webkit-mask-image: url(svg/post-date.svg);
- mask-image: url(svg/post-date.svg);
- }
- .is-style-post-category-icon:before {
- -webkit-mask-image: url(svg/post-category.svg);
- mask-image: url(svg/post-category.svg);
- }
- .is-style-post-tag-icon:before {
- -webkit-mask-image: url(svg/post-tag.svg);
- mask-image: url(svg/post-tag.svg);
- }
|