Added hover pseudoclasses

This commit is contained in:
Bastian Meissner 2020-05-24 18:32:16 +02:00
parent 7766bedfd1
commit a652e005b7
3 changed files with 16 additions and 0 deletions

View file

@ -31,6 +31,10 @@ const Link = styled.a`
margin: 0;
text-decoration: none;
font-size: 1rem;
&:hover {
text-decoration: underline;
}
`;
const Description = styled.p`

View file

@ -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 = () => {

View file

@ -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)`