Skip to content

Commit 2797f57

Browse files
committed
Fixed fullscreen views
1 parent a803f5f commit 2797f57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/card/Card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ const NeoCard = ({
209209
if (expanded) {
210210
return (
211211
<Dialog open={expanded} aria-labelledby='form-dialog-title' className='dialog-xxl'>
212-
<Dialog.Content style={{ height: document.documentElement.clientHeight }}>{component}</Dialog.Content>
212+
<Dialog.Content style={{ height: document.documentElement.clientHeight - 200 }}>{component}</Dialog.Content>
213213
</Dialog>
214214
);
215215
}

0 commit comments

Comments
 (0)