4cb856a180
* Design fixes * Fix design * unused code * Fix tests
31 lines
768 B
TypeScript
31 lines
768 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
import { hoverBackground } from '@/ui/themes/effects';
|
|
|
|
export const DropdownMenuItem = styled.li`
|
|
--horizontal-padding: ${({ theme }) => theme.spacing(1)};
|
|
--vertical-padding: ${({ theme }) => theme.spacing(2)};
|
|
|
|
align-items: center;
|
|
|
|
border-radius: ${({ theme }) => theme.border.radius.sm};
|
|
color: ${({ theme }) => theme.font.color.secondary};
|
|
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
font-size: ${({ theme }) => theme.font.size.sm};
|
|
|
|
gap: ${({ theme }) => theme.spacing(2)};
|
|
|
|
height: calc(32px - 2 * var(--vertical-padding));
|
|
|
|
padding: var(--vertical-padding) var(--horizontal-padding);
|
|
|
|
${hoverBackground};
|
|
|
|
user-select: none;
|
|
width: calc(100% - 2 * var(--horizontal-padding));
|
|
`;
|