feat(Editor): make server utilities their own pages

Signed-off-by: Katalina Okano <git@kat.cafe>
This commit is contained in:
41666 2021-07-17 19:23:35 -04:00
parent d52508a046
commit 4cc202b62a
8 changed files with 125 additions and 153 deletions

View file

@ -5,10 +5,10 @@ export const Space = styled.div`
height: 15px;
`;
export const LinedSpace = styled.div<{ width?: number }>`
export const LinedSpace = styled.div<{ width?: number; color?: string }>`
height: 7.5px;
margin-top: 7.5px;
border-top: 1px solid ${palette.taupe300};
border-top: 1px solid ${(props) => (props.color ? props.color : palette.taupe300)};
${(props) =>
props.width &&
css`