mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-05 23:43:37 +02:00
16 lines
367 B
TypeScript
16 lines
367 B
TypeScript
import { transparentize } from "polished"
|
|
import styled from "styled-components"
|
|
|
|
export const ThemeTogglerWrapper = styled.div``
|
|
|
|
export const Link = styled.span`
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
border-bottom: 2px solid transparent;
|
|
|
|
&:hover {
|
|
border-bottom: 2px solid
|
|
${props => transparentize(0.6, props.theme.sidebar.foreground)};
|
|
}
|
|
`
|