UNPKG

@sinchsmb/ui-kit

Version:

UI kit for SinchSMB frontend

30 lines (22 loc) 509 B
import styled from 'styled-components/macro'; import { ZIndex } from '../../constans/zIndex'; export const StyledPopper = styled.div` z-index: ${ZIndex.Dropdown}; `; export const animationDuration = 100; export const StyledContainer = styled.div` &.enter { opacity: 0; } &.enter-active { opacity: 1; transition: opacity ${animationDuration}ms linear; } &.exit { opacity: 1; } &.exit-active { opacity: 0; transition: opacity ${animationDuration}ms linear; } `;