Skip to content

Commit

Permalink
Fix styling in MH
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyEJohnson committed Aug 27, 2024
1 parent d5b5e50 commit 7375997
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,15 @@ const StyledDropdownList = styled(DropdownList)`
li {
display: flex;
button,
a {
border: 0;
width: 100%;
:focus,
:hover {
outline-width: 0;
}
}
}
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -568,10 +568,19 @@ exports[`ContextMenu match snapshot when open 1`] = `
display: flex;
}
.c13 li button,
.c13 li a {
border: 0;
width: 100%;
}
.c13 li button:focus,
.c13 li a:focus,
.c13 li button:hover,
.c13 li a:hover {
outline-width: 0;
}
.c31 {
width: 15px;
height: 15px;
Expand Down

0 comments on commit 7375997

Please sign in to comment.