Skip to content

Commit

Permalink
Fix dialog styling in Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
Polleps committed Nov 2, 2023
1 parent f45b31b commit f8e59b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browser/data-browser/src/components/Dialog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ const StyledInnerDialog = styled.div`
grid-template-rows: 1fr auto auto;
gap: 1rem;
grid-template-areas: 'title close' 'content content' 'actions actions';
max-height: 100%;
`;

const fadeInForground = keyframes`
Expand Down Expand Up @@ -267,7 +266,8 @@ const StyledDialog = styled.dialog`
max-inline-size: min(90vw, 100ch);
min-inline-size: min(90vw, 60ch);
max-block-size: 100vh;
height: fit-content;
max-height: 90vh;
overflow: visible;
box-shadow: ${p => p.theme.boxShadowSoft};
Expand Down

0 comments on commit f8e59b5

Please sign in to comment.