We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdfe788 commit 72f93d9Copy full SHA for 72f93d9
1 file changed
src/components/visual-editor/style.scss
@@ -40,6 +40,15 @@
40
padding-right: 16px;
41
}
42
43
+// Prevent horizontal scroll in the block inserter popover. This only appears to
44
+// occur on touch devices, not cursor devices.
45
+// TODO: Fix this in core and remove the styles.
46
+.gutenberg-kit-visual-editor
47
+ .block-editor-inserter__popover
48
+ .components-popover__content {
49
+ overflow-x: hidden !important; // `!important` required to override inline styles
50
+}
51
+
52
// Hide the inline block appendar button, as its positioning and size is not
53
// ideal for small screens
54
.gutenberg-kit-visual-editor
0 commit comments