1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

M #~: horizontally align the ssh console (#3249)

(cherry picked from commit 2345ff87a21e19d5128f373760543ac4915d3cc1)
This commit is contained in:
Jorge Miguel Lobo Escalona 2024-09-27 15:10:07 +02:00 committed by Tino Vázquez
parent 3d337d9ff5
commit fd9daa2b26
No known key found for this signature in database
GPG Key ID: 14201E424D02047E

View File

@ -13,14 +13,14 @@
* See the License for the specific language governing permissions and *
* limitations under the License. *
* ------------------------------------------------------------------------- */
import { styled } from '@mui/material'
import {
MutableRefObject, // eslint-disable-line no-unused-vars
ReactElement, // eslint-disable-line no-unused-vars
useEffect,
useMemo,
useRef,
MutableRefObject, // eslint-disable-line no-unused-vars
ReactElement, // eslint-disable-line no-unused-vars
} from 'react'
import { styled } from '@mui/material'
import { GuacamoleSession } from 'client/constants'
@ -43,8 +43,12 @@ const Viewport = styled('div')({
const Display = styled('div')({
zIndex: 1,
margin: '0 auto',
overflow: 'hidden',
'& > *': { cursor: 'none' },
'& > *': {
cursor: 'none',
margin: '0 auto',
},
})
/**