123456789101112131415161718192021222324252627282930313233343536373839 |
- .post-meta {
- align-items: center;
- justify-content: center;
- @include break-small-only() {
- padding-top: 0 !important;
- margin-bottom: -20px;
- }
- .wp-block-post-date::before {
- display: none;
- }
- > *,
- .wp-block-post-date {
- margin: 0 8px;
- &::before {
- content: "";
- }
- }
- .wp-block-post-terms {
- margin-left: 0;
- &::before {
- color: var(--wp--custom--color--foreground);
- content: "·";
- margin-right: 8px;
- }
- // Needed while https://github.com/WordPress/gutenberg/issues/31710 is sorted.
- color: transparent;
- a {
- color: var(--wp--custom--color--foreground);
- &:not(:last-child):after {
- // to be removed after https://github.com/WordPress/gutenberg/pull/32812 lands
- content: ",";
- }
- }
- }
- }
|