admin管理员组

文章数量:1334133

Currently, I am using the fullScreen property on the Material UI Dialog ponent (which acts as a modal on the screen) as remended in the docs, like this:

import useMediaQuery from '@material-ui/core/useMediaQuery';


function MyComponent() {

  const theme = useTheme();

  const fullScreen = useMediaQuery(theme.breakpoints.down('sm'));

  return <Dialog fullScreen={fullScreen} />

}

Unfortunately, this causes the Dialog modal to cover the navbar at the top of the screen. I would like to override the height of the Dialog modal, but I am not sure how.

Is anyone able to help?

Currently, I am using the fullScreen property on the Material UI Dialog ponent (which acts as a modal on the screen) as remended in the docs, like this:

import useMediaQuery from '@material-ui/core/useMediaQuery';


function MyComponent() {

  const theme = useTheme();

  const fullScreen = useMediaQuery(theme.breakpoints.down('sm'));

  return <Dialog fullScreen={fullScreen} />

}

Unfortunately, this causes the Dialog modal to cover the navbar at the top of the screen. I would like to override the height of the Dialog modal, but I am not sure how.

Is anyone able to help?

Share Improve this question asked Sep 10, 2021 at 1:34 Jack JosephJack Joseph 1292 silver badges7 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 6

Just pass a className to it & give it the top value equal to your AppBar's height. here is the sandbox

本文标签: javascriptCustom 39full screen39 height for the Material UI Dialog modal componentStack Overflow