Implemented first draft of issue modal
This commit is contained in:
13
client/src/shared/components/Tooltip/Styles.js
Normal file
13
client/src/shared/components/Tooltip/Styles.js
Normal file
@@ -0,0 +1,13 @@
|
||||
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}
|
||||
`;
|
||||
Reference in New Issue
Block a user