Files
fauxjira/client/src/shared/components/Tooltip/Styles.js
2019-12-18 03:48:42 +01:00

14 lines
333 B
JavaScript

import styled from 'styled-components';
import { zIndexValues, mixin } from 'shared/utils/styles';
export const Tooltip = styled.div`
z-index: ${zIndexValues.modal + 1};
position: fixed;
width: ${props => props.width}px;
border-radius: 3px;
background: #fff;
${mixin.hardwareAccelerate}
${mixin.boxShadowDropdown}
`;