ボタンの間を追加

feature-frontend-styles
Haru.Kusano 5 months ago
parent 1611e50cc2
commit 8a5bd92092
  1. 4
      frontend/src/pages/TaskListPage.tsx

@ -200,7 +200,7 @@ const TaskListPage: React.FC = () => {
<IconButton <IconButton
edge="end" edge="end"
aria-label="食材情報追加" aria-label="食材情報追加"
sx={{ marginLeft: 2 }} //sx={{ marginRight: 2 }}
onClick={() => { onClick={() => {
setOpenInfoDialog(true) setOpenInfoDialog(true)
setSelectedTask(tobuy.tobuyId) setSelectedTask(tobuy.tobuyId)
@ -210,6 +210,7 @@ const TaskListPage: React.FC = () => {
<ShoppingBasketIcon /> <ShoppingBasketIcon />
</IconButton> </IconButton>
</Tooltip> </Tooltip>
{/* 買い物リスト:食材削除ボタン */} {/* 買い物リスト:食材削除ボタン */}
<Tooltip title="項目を削除" <Tooltip title="項目を削除"
componentsProps={{ componentsProps={{
@ -227,6 +228,7 @@ const TaskListPage: React.FC = () => {
<IconButton <IconButton
edge="end" edge="end"
sx={{ marginLeft: 3 }}
aria-label="delete" aria-label="delete"
onClick={() => handleDeleteTask(tobuy.tobuyId)} onClick={() => handleDeleteTask(tobuy.tobuyId)}
> >

Loading…
Cancel
Save