Prevents button text from wrapping from < 939

This commit is contained in:
Jonathan Rosenbaum 2026-03-29 06:41:35 +00:00
parent 0c45ff3858
commit 7389e5b9ff

View File

@ -130,3 +130,19 @@ li.wp-block-navigation-item.wp-block-navigation-link > a:hover {
.wp-social-link-mail svg {
display: none;
}
@media only screen and (max-width: 939px) {
.button-helper {
flex-wrap: nowrap !important;
}
.button-helper .wp-block-button__link {
font-size: clamp(0.65rem, 2vw, 0.875rem);
padding: 6px 8px !important;
white-space: nowrap;
}
.button-helper .wp-block-buttons {
min-width: auto;
}
}