Position text.

This commit is contained in:
Paulo Gustavo Veiga 2022-10-23 10:31:27 -07:00
parent df43bfc373
commit 5f564166d9
3 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ import { FormattedMessage } from 'react-intl';
const KeyboardShorcutsHelp = () => { const KeyboardShorcutsHelp = () => {
return ( return (
<div id="keyboardTable" style={{ position: 'relative', zIndex: '2' }}> <div id="keyboardTable">
<table> <table>
<colgroup> <colgroup>
<col width="40%" /> <col width="40%" />

View File

@ -111,6 +111,7 @@ export const ToolbarSubmenu = (props: {
<Popover <Popover
role="submenu" role="submenu"
open={open} open={open}
style={{ zIndex: 1000 }}
onClose={() => setOpen(false)} onClose={() => setOpen(false)}
anchorEl={itemRef.current} anchorEl={itemRef.current}
container={itemRef.current} container={itemRef.current}

View File

@ -36,7 +36,6 @@ body {
} }
#keyboardTable { #keyboardTable {
font-family: Arial, verdana, serif;
font-size: 13px; font-size: 13px;
width: 100%; width: 100%;
} }