Skip to content

Commit 93f0092

Browse files
fix: style fixes
1 parent 2f55e14 commit 93f0092

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/pages/library/components/sidebar-links.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function SidebarLinks() {
1717

1818
return (
1919
<>
20-
<div className='flex flex-col'>
20+
<div className='flex flex-col gap-y-2'>
2121
{[
2222
{ href: '/library', icon: <span className='icon-[mdi--bookshelf] size-5' />, text: 'Library' },
2323
{ href: '/library/history', icon: <span className='icon-[mdi--history] size-5' />, text: 'History' },
@@ -37,7 +37,7 @@ export function SidebarLinks() {
3737

3838
<div className='mt-2 flex flex-col gap-y-2'>
3939
{platformLinks.map(({ href, icon, name, text }) => (
40-
<SidebarLink href={href} key={text}>
40+
<SidebarLink href={href} key={name}>
4141
{icon ? <img alt='icon' className='size-5' src={icon} /> : null}
4242
{text}
4343
</SidebarLink>

src/pages/library/platform/rom/components/launch-button.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ export function LaunchButton() {
3232
: 'icon-[mdi--play] motion-preset-pulse-lg motion-duration-1500'
3333
}
3434
/>
35-
<span className='w-[228px] text-2xl'>{isPreparing ? 'Loading...' : 'Press any key to start'}</span>
35+
<span className='w-[240px] text-2xl font-semibold'>
36+
{isPreparing ? 'Loading...' : 'Press any key to start'}
37+
</span>
3638
</div>
3739
</Button>
3840
</button>

0 commit comments

Comments
 (0)