Skip to content

Commit

Permalink
Merge pull request #2382 from trilitech/UMA-1072/fix-account-selector…
Browse files Browse the repository at this point in the history
…-zindex

[Web][UMA-1072] Update zIndex of close and back buttons on modal
  • Loading branch information
asiia-trilitech authored Feb 12, 2025
2 parents 8e5262f + 0c13682 commit d96d987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/BackButton/BaseBackButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ArrowLeftCircleIcon } from "../../assets/icons";
export const BaseBackButton = (props: Omit<IconButtonProps, "aria-label">) => (
<IconButton
position="absolute"
zIndex="100"
zIndex="2"
top={{
base: "12px",
md: "18px",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/CloseButton/BaseCloseButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { CloseIcon } from "../../assets/icons";
export const BaseCloseButton = (props: Omit<IconButtonProps, "aria-label">) => (
<IconButton
position="absolute"
zIndex="100"
zIndex="2"
top={{
base: "12px",
md: "18px",
Expand Down

1 comment on commit d96d987

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Title Lines Statements Branches Functions
apps/desktop Coverage: 83%
83.74% (1788/2135) 79.43% (850/1070) 78.27% (454/580)
apps/web Coverage: 83%
83.74% (1788/2135) 79.43% (850/1070) 78.27% (454/580)
packages/components Coverage: 97%
97.53% (198/203) 95.69% (89/93) 88.33% (53/60)
packages/core Coverage: 81%
82.37% (215/261) 72.51% (95/131) 81.66% (49/60)
packages/crypto Coverage: 100%
100% (43/43) 90.9% (10/11) 100% (7/7)
packages/data-polling Coverage: 96%
94.66% (142/150) 87.5% (21/24) 92.85% (39/42)
packages/multisig Coverage: 98%
98.47% (129/131) 85.71% (18/21) 100% (36/36)
packages/social-auth Coverage: 95%
95.45% (21/22) 91.66% (11/12) 100% (3/3)
packages/state Coverage: 83%
83.21% (833/1001) 79.58% (191/240) 76.7% (303/395)
packages/tezos Coverage: 89%
88.4% (122/138) 92.68% (38/41) 87.17% (34/39)
packages/tzkt Coverage: 89%
87.32% (62/71) 87.5% (14/16) 80.48% (33/41)

Please sign in to comment.