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 75c2e93 commit ca2e2beCopy full SHA for ca2e2be
src/react/CornerIndicatorStats.tsx
@@ -6,7 +6,7 @@ export default () => {
6
const { fullscreen } = useSnapshot(miscUiState)
7
const { topRightTimeDisplay } = useSnapshot(options)
8
const useBottom = (
9
- (process.env.NODE_ENV === 'development' && document.exitPointerLock) ||
+ // (process.env.NODE_ENV === 'development' && document.exitPointerLock) ||
10
(
11
topRightTimeDisplay === 'always' ||
12
(topRightTimeDisplay === 'only-fullscreen' && fullscreen)
@@ -18,7 +18,7 @@ export default () => {
18
style={{
19
position: 'fixed',
20
right: 0,
21
- zIndex: 1,
+ zIndex: 10,
22
...(useBottom ? { bottom: 0 } : { top: 0 }),
23
}}
24
/>
0 commit comments