Skip to content

Commit

Permalink
style: add padding
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Aug 18, 2023
1 parent 627a171 commit dc43575
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/client/view/components/table/Cell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ const baseCellBox = css`
align-items: center;
word-break: keep-all;
text-align: center;
padding: 0 2px;
box-sizing: border-box;
&.completed {
background-color: var(--color-200);
Expand Down
5 changes: 4 additions & 1 deletion src/client/view/pages/share/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const BandalartSharePage = () => {
>
{isMobile && <AppDownload />}
<HeaderSection detail={detail} completionRatio={completionRatio} />
<main>
<main className={mainStyle}>
<Table root={treeRoot} />
</main>
</div>
Expand All @@ -46,4 +46,7 @@ const container = css`
justify-content: center;
margin: auto;
gap: 18px;
padding: 0 16px;
`;

const mainStyle = css``;

0 comments on commit dc43575

Please sign in to comment.