Restore non-wrapping mobile tabs and clamp help tooltip in viewport

This commit is contained in:
2026-05-26 08:56:54 +02:00
parent 33921a3f6e
commit b34ceda1e3
2 changed files with 22 additions and 10 deletions
+3 -10
View File
@@ -37,15 +37,8 @@
@media (max-width: 767px) {
.sg-content-block-card-group__tabs[role="tablist"] > [role="tab"] {
flex: 0 0 calc(
(
100%
- (var(--spacing-small) * (var(--sg-tab-mobile-row-slots, 1) - 1))
)
/ var(--sg-tab-mobile-row-slots, 1)
);
min-width: 0;
white-space: normal;
overflow-wrap: anywhere;
flex: 0 0 auto;
min-width: max-content;
white-space: nowrap;
}
}