mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
21 lines
548 B
TypeScript
21 lines
548 B
TypeScript
import { palette } from '@roleypoly/design-system/atoms/colors';
|
|
import { transitions } from '@roleypoly/design-system/atoms/timings';
|
|
import styled from 'styled-components';
|
|
|
|
export const GuildNavItem = styled.a`
|
|
display: flex;
|
|
align-items: center;
|
|
transition: border ${transitions.in2in}s ease-in-out;
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
box-sizing: border-box;
|
|
margin: 5px;
|
|
user-select: none;
|
|
color: unset;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
border-color: ${palette.taupe300};
|
|
cursor: pointer;
|
|
}
|
|
`;
|