Blocks and Patterns selector panel width flickers #41794
Labels
Browser Issues
Issues or PRs that are related to browser specific problems
[Type] Bug
An existing feature does not function as intended
What problem does this address?
Switching Blocks and Patterns tabs back and forth selector panel, panel inner elements (search bar, patterns list ) width flickers. The width flickering issue is due to the scrollbar.
Screenshots:
What is your proposed solution?
Solution 1:
Set the max width to block-editor-inserter__content.
.block-editor-inserter__content {max-width: 333px;}
The result can be achieved with solution 1:
Solution 2:
Make selector panel overflow-y: scroll; rather then overflow-y: auto;
.block-editor-inserter__main-area { overflow-y: scroll;}
The result can be achieved with solution 2:
The text was updated successfully, but these errors were encountered: