Skip to content

Commit

Permalink
Fit modal to content
Browse files Browse the repository at this point in the history
  • Loading branch information
francbartoli committed Nov 19, 2024
1 parent a4427b0 commit a5ad5f7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/components/DownloadDataDialog/styles.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Height } from '@mui/icons-material';

export const TitleDownloadStyle = theme => ({
color: 'success.dark',
fontWeight: 'bold',
Expand Down Expand Up @@ -187,8 +189,9 @@ export const ExtractionStyle = theme => ({
position: 'absolute',
left: '20%',
right: '20%',
width: '50%',
top: 'calc(100% - 260px)',
width: 'fit-content',
height: 'fit-content',
top: 'calc(100% - 460px)',
minWidth: '600px',
maxWidth: '1700px',
});

0 comments on commit a5ad5f7

Please sign in to comment.