1
0

fix: logo problem

This commit is contained in:
オスカー、 2024-05-22 12:17:26 +09:00
parent 0d95e24b2e
commit 99e040b3b9
Signed by: SWREI
GPG Key ID: 139D6573F92DA9F7
7 changed files with 9 additions and 11 deletions

View File

@ -1,9 +1,10 @@
import logo from '@/images/logo.svg';
import logo_full from '@/images/logo-symbol-wordmark.png';
import logo from '@/images/logo.png';
export const WordmarkLogo: React.FC = () => (
<img src='https://squares.puyopuyotetr.is/logo.png' className='logo logo--wordmark' alt='Mastodon' />
<img src={logo_full} alt='Mastodon Glitch Edition' className='logo logo--wordmark' />
);
export const SymbolLogo: React.FC = () => (
<img src={logo} alt='Mastodon' className='logo logo--icon' />
<img src={logo} alt='Mastodon Glitch Edition' className='logo logo--icon' />
);

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 209 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 209 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,7 +1,8 @@
import logo from '@/images/logo.svg';
import logo_full from '@/images/logo-symbol-wordmark.png';
import logo from '@/images/logo.png';
export const WordmarkLogo: React.FC = () => (
<img src='https://squares.puyopuyotetr.is/logo.png' className='logo logo--wordmark' alt='Mastodon' />
<img src={logo_full} alt='Mastodon' className='logo logo--wordmark' />
);
export const SymbolLogo: React.FC = () => (