Skip to content

Commit

Permalink
アイコンのパスを修正しました
Browse files Browse the repository at this point in the history
  • Loading branch information
Jun-Murakami committed Mar 5, 2024
1 parent 532bfa1 commit 0376090
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="ja">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/TaskTrees.svg" />
<link rel="icon" type="image/svg+xml" href="/src/assets/TaskTrees.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>TaskTrees</title>
</head>
Expand Down
File renamed without changes
10 changes: 7 additions & 3 deletions src/components/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function HomePage() {
) : (
<Typography variant='h3'>
<img
src='/TaskTrees.svg'
src='/src/assets/TaskTrees.svg'
alt='Task Tree'
style={{ width: '35px', height: '35px', marginTop: '30px', marginRight: '10px' }}
/>
Expand All @@ -94,7 +94,11 @@ export function HomePage() {
// アカウント削除の確認ダイアログ
<>
<Typography sx={{ marginBottom: 0 }} variant='h3'>
<img src='/TaskTrees.svg' alt='Task Tree' style={{ width: '35px', height: '35px', marginRight: '10px' }} />
<img
src='/src/assets/TaskTrees.svg'
alt='Task Tree'
style={{ width: '35px', height: '35px', marginRight: '10px' }}
/>
TaskTrees
</Typography>
<Box sx={{ width: '100%', marginTop: -1, marginBottom: 4 }}>
Expand Down Expand Up @@ -123,7 +127,7 @@ export function HomePage() {
// ログイン前の画面
<>
<Typography sx={{ marginBottom: 0 }} variant='h3'>
<img src='/TaskTrees.svg' alt='Task Tree' style={{ width: '35px', height: '35px', marginRight: '10px' }} />
<img src='/src/assets/TaskTrees.svg' alt='Task Tree' style={{ width: '35px', height: '35px', marginRight: '10px' }} />
TaskTrees
</Typography>
<Box sx={{ width: '100%', marginTop: -1, marginBottom: 4 }}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/TreeSettingsAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export function TreeSettingsAccordion({ deleteTree }: TreeSettingsAccordionProps
}}
>
<Stack direction='row' sx={{ height: 40, width: '100%', margin: '0 auto' }}>
<img src='/TaskTrees.svg' alt='Task Tree' style={{ width: '28px', height: '28px', marginTop: 5 }} />
<img src='/src/assets/TaskTrees.svg' alt='Task Tree' style={{ width: '28px', height: '28px', marginTop: 5 }} />
{isAccordionExpanded ? (
<TextField
id='outlined-basic'
Expand Down

0 comments on commit 0376090

Please sign in to comment.