Skip to content

Commit

Permalink
fix: desktop modal border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
siandreev committed Apr 1, 2024
1 parent 340aaeb commit ad2e53c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/uikit/src/components/Notification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,10 @@ const Content = styled.div<{ standalone: boolean }>`
${p =>
p.theme.displayType === 'full-width' &&
css`
border-bottom-right-radius: ${p.theme.cornerMedium};
border-bottom-left-radius: ${p.theme.cornerMedium};
border-top-right-radius: ${props => props.theme.cornerSmall};
border-top-left-radius: ${props => props.theme.cornerSmall};
border-bottom-right-radius: ${p.theme.cornerSmall};
border-bottom-left-radius: ${p.theme.cornerSmall};
max-height: calc(100% - 32px);
overflow: auto;
padding-top: 0;
Expand Down

0 comments on commit ad2e53c

Please sign in to comment.