Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix tabbedview breakpoint width (#12556)
Browse files Browse the repository at this point in the history
Which should be 1024 according to the designs, not 768
  • Loading branch information
dbkr authored May 28, 2024
1 parent 148a360 commit e8bb241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion res/css/structures/_TabbedView.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e8bb241

Please sign in to comment.