_meta.scss 736 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .post-meta {
  2. align-items: center;
  3. justify-content: center;
  4. @include break-small-only() {
  5. padding-top: 0 !important;
  6. margin-bottom: -20px;
  7. }
  8. .wp-block-post-date::before {
  9. display: none;
  10. }
  11. > *,
  12. .wp-block-post-date {
  13. margin: 0 8px;
  14. &::before {
  15. content: "";
  16. }
  17. }
  18. .wp-block-post-terms {
  19. margin-left: 0;
  20. &::before {
  21. color: var(--wp--custom--color--foreground);
  22. content: "·";
  23. margin-right: 8px;
  24. }
  25. // Needed while https://github.com/WordPress/gutenberg/issues/31710 is sorted.
  26. color: transparent;
  27. a {
  28. color: var(--wp--custom--color--foreground);
  29. &:not(:last-child):after {
  30. // to be removed after https://github.com/WordPress/gutenberg/pull/32812 lands
  31. content: ",";
  32. }
  33. }
  34. }
  35. }