mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
18 lines
325 B
JavaScript
18 lines
325 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
import { Shadows } from '../globals';
|
|
|
|
export const StyledCard = styled.div`
|
|
position: relative;
|
|
background: ${props => props.theme.bg.default};
|
|
border-radius: 6px;
|
|
${Shadows.default};
|
|
|
|
&:hover {
|
|
${Shadows.hover};
|
|
}
|
|
|
|
&:active {
|
|
${Shadows.active};
|
|
}
|
|
`;
|