2022-11-06 22:46:13 +00:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
|
|
const Button = styled.div`
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 0.25em;
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
2023-12-11 22:16:55 +00:00
|
|
|
&:hover {
|
2022-11-06 22:46:13 +00:00
|
|
|
background: ${props => props.theme.highlight};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
span {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
export default Button;
|