Drawer: remove wrapping div preventing Drawer from scrolling properly (#75823)

remove wrapping div prevent drawer from scrolling properly
This commit is contained in:
Ashley Harrison
2023-10-02 16:01:28 +01:00
committed by GitHub
parent 286dc333c5
commit e9555d727a
3 changed files with 9 additions and 18 deletions

View File

@@ -49,13 +49,13 @@ export function NewsWrapper({ feedUrl }: NewsWrapperProps) {
const getStyles = (theme: GrafanaTheme2) => {
return {
innerWrapper: css`
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
`,
innerWrapper: css({
width: '100%',
height: '100%',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
}),
grot: css({
display: `flex`,
alignItems: `center`,