Skip to content

Commit

Permalink
update snaps
Browse files Browse the repository at this point in the history
  • Loading branch information
Beth Shook committed Jun 17, 2024
1 parent 63df139 commit 7d21e3d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Button = styled(ButtonHoc)`
display: flex;
cursor: pointer;
align-items: center;
justify-content: center;
justify-content: center;
border-radius: 0.5rem;
box-shadow: 0 0.2rem 0.4rem rgba(ui-color(black), 0.2);
text-decoration: none;
Expand Down Expand Up @@ -135,6 +135,7 @@ export const PlainButton = styled.button`

// tslint:disable-next-line:variable-name
export const ButtonLink = styled(PlainButton)`
outline: none;
${textStyle}
${(props: {decorated: boolean}) => props.decorated ? decoratedLinkStyle : linkStyle}
`;
Expand Down
3 changes: 3 additions & 0 deletions src/app/components/__snapshots__/Button.spec.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ exports[`ButtonLink matches snapshot (decorated and disabled) 1`] = `
margin: 0;
padding: 0;
background: none;
outline: none;
color: #424242;
color: #027EB5;
cursor: pointer;
Expand Down Expand Up @@ -398,6 +399,7 @@ exports[`ButtonLink matches snapshot (decorated) 1`] = `
margin: 0;
padding: 0;
background: none;
outline: none;
color: #424242;
color: #027EB5;
cursor: pointer;
Expand All @@ -424,6 +426,7 @@ exports[`ButtonLink matches snapshot 1`] = `
margin: 0;
padding: 0;
background: none;
outline: none;
color: #424242;
color: #027EB5;
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ exports[`ChapterFilter matches snapshot 1`] = `
margin: 0;
padding: 0;
background: none;
outline: none;
color: #424242;
color: #027EB5;
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ exports[`ColorFilter matches snapshot 1`] = `
margin: 0;
padding: 0;
background: none;
outline: none;
color: #424242;
color: #027EB5;
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ input:checked + .c21 .c22 {
margin: 0;
padding: 0;
background: none;
outline: none;
color: #424242;
color: #027EB5;
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ input:checked + .c21 .c22 {
margin: 0;
padding: 0;
background: none;
outline: none;
color: #424242;
color: #027EB5;
cursor: pointer;
Expand Down

0 comments on commit 7d21e3d

Please sign in to comment.