diff --git a/mu-plugins/blocks/site-breadcrumbs/postcss/style.pcss b/mu-plugins/blocks/site-breadcrumbs/postcss/style.pcss index 75fad2f02..bbd7852c9 100644 --- a/mu-plugins/blocks/site-breadcrumbs/postcss/style.pcss +++ b/mu-plugins/blocks/site-breadcrumbs/postcss/style.pcss @@ -1,9 +1,6 @@ .wp-block-wporg-site-breadcrumbs { - display: flex; - align-items: center; - & a { - color: var(--wp--preset--color--charcoal-1); + color: var(--wp--preset--color--charcoal-4); text-decoration-line: none; &:hover { @@ -11,22 +8,25 @@ } } - & > span:not(:first-child) { + & > span { + display: inline-block; - /* This ensures that the square separator is reliably centered. */ - display: flex; - align-items: center; - margin-top: 0; + &:not(:last-child) { - &::before { - content: "/"; - display: inline-block; - font-weight: 400; - margin: 0 0.5rem; + /* This ensures that the square separator is reliably centered. */ + margin-top: 0; + + &::after { + content: "/"; + display: inline-block; + font-weight: 400; + margin: 0 var(--wp--preset--spacing--10); + color: var(--wp--preset--color--light-grey-1); + } } } & .is-current-page { - font-weight: 700; + color: var(--wp--preset--color--charcoal-1); } }