mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-15 17:19:10 +00:00
feat(Editor): make server utilities their own pages
Signed-off-by: Katalina Okano <git@kat.cafe>
This commit is contained in:
parent
d52508a046
commit
4cc202b62a
8 changed files with 125 additions and 153 deletions
|
@ -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`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue