Skip to content

Commit

Permalink
Merge branch 'main' into fix/outlink-externals
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB authored Jun 16, 2023
2 parents 798a92c + c8ccd08 commit 1e1aa63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ import type { TransactionDialogPassthrough } from '@app/transaction-flow/types'
const Container = styled.form(({ theme }) => [
css`
width: 100%;
max-height: 60vh;
max-height: min(80vh, 600px);
background: ${theme.colors.backgroundPrimary};
border-radius: ${theme.space['5']};
overflow: hidden;
display: flex;
flex-direction: column;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { WrappedAvatarButton } from './WrappedAvatarButton'
const Container = styled.form(({ theme }) => [
css`
width: 100%;
max-height: 600px;
max-height: min(80vh, 600px);
display: flex;
flex-direction: column;
gap: ${theme.space['4']};
Expand Down

0 comments on commit 1e1aa63

Please sign in to comment.