Skip to content

Commit

Permalink
fix(Modal): border-radius on mobile (#3740)
Browse files Browse the repository at this point in the history
  • Loading branch information
DSil committed Feb 10, 2023
1 parent 8f2df5f commit 5d8e08a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/orbit-components/src/Modal/index.tsx
Expand Up @@ -197,6 +197,7 @@ const ModalWrapperContent = styled.div<{
}) => css`
position: absolute;
box-sizing: border-box;
border-top-left-radius: ${!isMobileFullPage && "12px"};
border-top-right-radius: ${!isMobileFullPage && "12px"};
background-color: ${theme.orbit.backgroundModal};
font-family: ${theme.orbit.fontFamily};
Expand Down

0 comments on commit 5d8e08a

Please sign in to comment.