From e8bb2419c9db3330ef4712fd6049e1adb075bb84 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 28 May 2024 11:59:31 +0100 Subject: [PATCH] Fix tabbedview breakpoint width (#12556) Which should be 1024 according to the designs, not 768 --- res/css/structures/_TabbedView.pcss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/css/structures/_TabbedView.pcss b/res/css/structures/_TabbedView.pcss index 34a1766c19..04f0587b0a 100644 --- a/res/css/structures/_TabbedView.pcss +++ b/res/css/structures/_TabbedView.pcss @@ -167,7 +167,7 @@ limitations under the License. } /* Hide the labels on tabs, showing only the icons, on narrow viewports. */ -@media (max-width: 768px) { +@media (max-width: 1024px) { .mx_TabbedView_tabsOnLeft.mx_TabbedView_responsive { .mx_TabbedView_tabLabel_text { display: none;