We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3901f2b commit ea035d7Copy full SHA for ea035d7
doc-tool/resources/css/sidebar.css
@@ -5,7 +5,10 @@
5
z-index: 1000;
6
width: 100%;
7
height: 100%;
8
- overflow: hidden auto;
+ /* Safari and some others don't support overflow: x y */
9
+ overflow-x: hidden;
10
+ overflow-y: auto;
11
+ -webkit-overflow-scrolling: touch; /* nicer scrolling on touch screens */
12
font-family: var(--font-family-sans-serif);
13
font-weight: 400;
14
background: var(--primary);
0 commit comments