mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
10 lines
245 B
JavaScript
10 lines
245 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};
|
|
`;
|