feat: add audit logging via webhook

This commit is contained in:
41666 2021-07-13 22:15:55 -04:00
parent 5dce2fc949
commit ad8dd18d02
13 changed files with 485 additions and 22 deletions

View file

@ -1,5 +1,17 @@
import styled from 'styled-components';
import { palette } from '@roleypoly/design-system/atoms/colors';
import styled, { css } from 'styled-components';
export const Space = styled.div`
height: 15px;
`;
export const LinedSpace = styled.div<{ width?: number }>`
height: 7.5px;
margin-top: 7.5px;
border-top: 1px solid ${palette.taupe300};
${(props) =>
props.width &&
css`
width: ${props.width}px;
`}
`;