From 178d8025f28646ce768c31b30fcc9a2fffd528fb Mon Sep 17 00:00:00 2001 From: Adam Wood <1017872+adamwoodnz@users.noreply.github.com> Date: Thu, 26 Oct 2023 12:13:39 +1300 Subject: [PATCH] Update responsive layout --- mu-plugins/blocks/latest-news/postcss/style.pcss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mu-plugins/blocks/latest-news/postcss/style.pcss b/mu-plugins/blocks/latest-news/postcss/style.pcss index ecc62c52f..df2e82a36 100644 --- a/mu-plugins/blocks/latest-news/postcss/style.pcss +++ b/mu-plugins/blocks/latest-news/postcss/style.pcss @@ -58,7 +58,7 @@ border-bottom-right-radius: 2px; } - @media screen and (max-width: 599px) { + @media screen and (max-width: 767px) { flex-direction: column; gap: var(--wp--preset--spacing--10); } @@ -68,10 +68,6 @@ text-decoration: none !important; } - &:focus-visible { - border-color: transparent; - } - & > a { flex-basis: calc(100% - var(--local-details-column-width)); } @@ -85,6 +81,10 @@ & > span { display: none; } + + & time { + white-space: nowrap; + } } } }