import styled, { css } from 'styled-components'; import { colors, spacing } from '../../../../../constants'; import { minMedia } from '../../../../../helpers/responsiveness'; import { NavbarDropdownListContainer } from '../NavbarDropdown'; const NavbarDropdownList = styled.ul` position: relative; z-index: 1; margin: ${spacing[3]} 0 ${spacing[3]}; padding: 0; list-style-type: none; border-bottom: 1px solid ${colors.greyLighter}; ${minMedia.desktop` ${css` background-color: ${colors.white}; box-shadow: 0px 1px 0px 1px ${colors.greyLight}; border: 1px solid ${colors.greyLighter}; border-radius: 12px; min-width: 240px; margin: 0; padding: ${spacing[2]} 0; &:before { content: ''; top: 1px; left: 50%; position: absolute; width: 25px; height: 25px; transform: translate(-50%, -50%) rotate(135deg); background-color: inherit; box-shadow: -1px 1px 0 0 ${colors.greyLighter}; } `} position: absolute; left: 50%; top: 50px; ${({ open }: NavbarDropdownListContainer) => css` ${ open ? css` transition: opacity 0.3s, transform 0.3s, visibility 0.3s; opacity: 1; visibility: visible; transform: translate(-50%, 0%); ` : css` transition: opacity 0.3s, transform 0.3s, visibility 0.3s 0.3s; opacity: 0; visibility: hidden; transform: translate(-50%, -10%); ` }} `} `} `; export default NavbarDropdownList;