fix(#2701): fix styled for tournament modal close button

keep-around/b214ac7012ef42593bee62c207888a2593bc5a38
alexey.krylov 3 years ago
parent c35dfbd283
commit 84d3cdc5cc
  1. 33791
      package-lock.json
  2. 4
      src/features/Modal/styled.tsx

33791
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -24,7 +24,7 @@ export const ModalWindow = styled.div`
border-radius: 10px; border-radius: 10px;
${isMobileDevice ${isMobileDevice
? css` ? css`
width: 90%; width: 90%;
margin: auto; margin: auto;
@media screen and (orientation: landscape){ @media screen and (orientation: landscape){
max-width: 489px; max-width: 489px;
@ -39,6 +39,8 @@ export const ModalWindow = styled.div`
export const ModalCloseButton = styled.button.attrs({ export const ModalCloseButton = styled.button.attrs({
'aria-label': 'Close', 'aria-label': 'Close',
})` })`
display: flex;
align-items: center;
position: absolute; position: absolute;
top: 0; top: 0;
right: 0; right: 0;

Loading…
Cancel
Save