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;
|
margin: 0;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Description = styled.p`
|
const Description = styled.p`
|
||||||
|
|
|
@ -33,6 +33,10 @@ const Bookmark = styled.a`
|
||||||
color: ${selectedTheme.accentColor};
|
color: ${selectedTheme.accentColor};
|
||||||
padding: 10px 0 0 0;
|
padding: 10px 0 0 0;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const useBookmarkData = () => {
|
const useBookmarkData = () => {
|
||||||
|
|
|
@ -49,12 +49,20 @@ export const Button = styled.button`
|
||||||
background: none;
|
background: none;
|
||||||
min-height: 3em;
|
min-height: 3em;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledButton = styled.button`
|
const StyledButton = styled.button`
|
||||||
float: right;
|
float: right;
|
||||||
border: none;
|
border: none;
|
||||||
background: none;
|
background: none;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const RefreshButton = styled(Button)`
|
export const RefreshButton = styled(Button)`
|
||||||
|
|
Loading…
Reference in a new issue