Added hover pseudoclasses
This commit is contained in:
parent
7766bedfd1
commit
a652e005b7
3 changed files with 16 additions and 0 deletions
|
@ -31,6 +31,10 @@ const Link = styled.a`
|
|||
margin: 0;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
`;
|
||||
|
||||
const Description = styled.p`
|
||||
|
|
|
@ -33,6 +33,10 @@ const Bookmark = styled.a`
|
|||
color: ${selectedTheme.accentColor};
|
||||
padding: 10px 0 0 0;
|
||||
font-size: 14px;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
`;
|
||||
|
||||
const useBookmarkData = () => {
|
||||
|
|
|
@ -49,12 +49,20 @@ export const Button = styled.button`
|
|||
background: none;
|
||||
min-height: 3em;
|
||||
height: 100%;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
`;
|
||||
|
||||
const StyledButton = styled.button`
|
||||
float: right;
|
||||
border: none;
|
||||
background: none;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
`;
|
||||
|
||||
export const RefreshButton = styled(Button)`
|
||||
|
|
Loading…
Reference in a new issue