Skip to content
Snippets Groups Projects
Commit 99914601 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Hide category scrollbar for blocks

parent 4132564a
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,18 @@
border-bottom: 1px solid $ui-black-transparent;
box-sizing: content-box;
height: calc(100% - 3.25rem) !important;
/*
For now, the layout cannot support scrollbars in the category menu.
The line below works for Edge, the `::-webkit-scrollbar` line
below that is for webkit browsers. It isn't possible to do the
same for Firefox, so a different solution may be needed for them.
*/
-ms-overflow-style: none;
}
.blocks :global(.blocklyToolboxDiv::-webkit-scrollbar) {
display: none;
}
.blocks :global(.blocklyFlyout) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment