mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
* feat: add audit logging via webhook * addd missing auditLogWebhook values in various places
17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
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;
|
|
`}
|
|
`;
|