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 f45b31b commit f8e59b5Copy full SHA for f8e59b5
browser/data-browser/src/components/Dialog/index.tsx
@@ -228,7 +228,6 @@ const StyledInnerDialog = styled.div`
228
grid-template-rows: 1fr auto auto;
229
gap: 1rem;
230
grid-template-areas: 'title close' 'content content' 'actions actions';
231
- max-height: 100%;
232
`;
233
234
const fadeInForground = keyframes`
@@ -267,7 +266,8 @@ const StyledDialog = styled.dialog`
267
266
max-inline-size: min(90vw, 100ch);
268
min-inline-size: min(90vw, 60ch);
269
max-block-size: 100vh;
270
-
+ height: fit-content;
+ max-height: 90vh;
271
overflow: visible;
272
box-shadow: ${p => p.theme.boxShadowSoft};
273
0 commit comments