diff --git a/src/renderer/src/components/PlanTabs.tsx b/src/renderer/src/components/PlanTabs.tsx index fe1cdf1..30c0dc6 100644 --- a/src/renderer/src/components/PlanTabs.tsx +++ b/src/renderer/src/components/PlanTabs.tsx @@ -187,7 +187,7 @@ const ScrollableTabsButtonAuto = (props: IProps) => { /> - + {tab === PlanTabEnum.sectionPassage && ( )} diff --git a/src/renderer/src/components/Sheet/PassageCard.tsx b/src/renderer/src/components/Sheet/PassageCard.tsx index 125624d..1f8324e 100644 --- a/src/renderer/src/components/Sheet/PassageCard.tsx +++ b/src/renderer/src/components/Sheet/PassageCard.tsx @@ -1,5 +1,5 @@ import { ISheet } from '../../model'; -import { Button, Card, CardContent, Typography } from '@mui/material'; +import { Box, Button, Card, CardContent, Typography } from '@mui/material'; import { ArrowForwardIos, Person, @@ -35,10 +35,10 @@ export function PassageCard(props: IProps) { variant="text" sx={{ minWidth: 0, - p: 0, ml: 1, - width: 48, - height: 48, + mt: '-.25rem', + width: 40, + height: 40, backgroundColor: 'transparent', '&:hover': { backgroundColor: '#f0f0f0', @@ -60,34 +60,23 @@ export function PassageCard(props: IProps) { )} ) : ( - + /> )} - + {cardInfo.comment || '\u00A0'} - + {assignedGroup} diff --git a/src/renderer/src/components/Sheet/PlanView.tsx b/src/renderer/src/components/Sheet/PlanView.tsx index 4bc6785..bb26eb3 100644 --- a/src/renderer/src/components/Sheet/PlanView.tsx +++ b/src/renderer/src/components/Sheet/PlanView.tsx @@ -51,13 +51,17 @@ export function PlanView(props: IProps) { display: 'flex', flexDirection: 'column', gap: '1rem', - padding: '1.5rem', + padding: '1rem', }} > {rowInfo.map((row, i) => { if (row.kind === 0) { return ( - + Section {row.sectionSeq} ); diff --git a/src/renderer/src/routes/PlanScreen.tsx b/src/renderer/src/routes/PlanScreen.tsx index 878757c..860070c 100644 --- a/src/renderer/src/routes/PlanScreen.tsx +++ b/src/renderer/src/routes/PlanScreen.tsx @@ -50,7 +50,7 @@ export const PlanScreen = () => { - +