birch-context-menu
Version:
Custom context menu for react
18 lines (17 loc) • 415 B
JavaScript
import styled from 'styled-components';
import Menu from './StyledMenu';
const StyledSubMenu = styled(Menu) `
position: absolute;
display: none;
background: #ffffff;
color: #4e4e4e;
box-shadow: 2px 3px 6px #545454;
}
& li:not(.disabled) button:hover {
background-color: #efefef;
}
& ul {
border-top: 1px solid #eaeaea;
}
`;
export default StyledSubMenu;