-
Beta Was this translation helpful? Give feedback.
Answered by
squidfunk
Aug 9, 2021
Replies: 1 comment 1 reply
-
You need to remove .md-tabs__list {
contain: initial;
} Note, however, that this is there for a reason. Containment is a way to signal to the browser that the content of this element is independent of other areas of the document tree. This improves rendering performance when scrolling (when the tabs are hidden). Removing it shouldn't be too big a deal, but it definitely helps when it's there. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
tmeuze
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to remove
contain: content
on.md-tabs__list
, e.g. by overriding it with:Note, however, that this is there for a reason. Containment is a way to signal to the browser that the content of this element is independent of other areas of the document tree. This improves rendering performance when scrolling (when the tabs are hidden). Removing it shouldn't be too big a deal, but it definitely helps when it's there.