Skip to content

Commit 8eaa89b

Browse files
hh
1 parent 46e7a33 commit 8eaa89b

9 files changed

Lines changed: 475 additions & 299 deletions

File tree

components/Layout.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ export default function Layout( { children } ) {
3939
</DialogPanel>
4040
</div>
4141
</Dialog>
42-
<div className="glass hidden lg:fixed lg:inset-y-0 lg:z-50 lg:flex lg:w-72 lg:flex-col dark:bg-gray-900">
42+
<div className="glass hidden lg:fixed lg:inset-y-0 lg:z-50 lg:flex lg:w-80 lg:flex-col dark:bg-gray-900">
4343
<div className="flex grow flex-col gap-y-5 overflow-y-auto border-r border-gray-200 px-6 dark:border-white/10 dark:bg-black/10">
4444
<nav className="flex flex-1 flex-col mt-10">
4545
<SideNav />
4646
</nav>
4747
</div>
4848
</div>
49-
<div className="lg:pl-72 w-full">
49+
<div className="lg:pl-80 w-full">
5050
<div className="sticky top-0 z-40 flex items-center gap-x-6 glass backdrop px-4 py-4 shadow-xs sm:px-6 lg:hidden dark:bg-gray-900 dark:shadow-none dark:after:pointer-events-none dark:after:absolute dark:after:inset-0 dark:after:border-b dark:after:border-white/10 dark:after:bg-black/10">
5151
<button
5252
type="button"

components/Navigation/SideNav.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ export default function SideNav() {
135135
alt={ `${ item.label } icon` }
136136
width={ 32 }
137137
height={ 32 }
138-
className="navLink-iconImage object-center object-cover"
138+
className="navLink-iconImage object-center object-cover rounded-2xl bg-clip-text"
139139
/>
140140
</span>
141-
<span className="navLink-label">
141+
<span className="navLink-label w-fit text-nowrap">
142142
{ item.label }
143143
</span>
144144
</Link>

components/Yugioh/CardFilter.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,12 @@ const CardFilter = ( {
4545
label: 'Rarity',
4646
values: [
4747
"Common / Short Print", "Rare", "Super Rare", "Ultra Rare",
48-
"Secret Rare", "Prismatic Secret Rare", "Gold Rare",
48+
"Secret Rare", "Prismatic Secret Rare", "Gold Rare", "Gold Secret Rare",
4949
"Premium Gold Rare", "Shatterfoil Rare", "Mosaic Rare",
50-
"Collector's Rare", "Starfoil Rare", "Ultimate Rare"
50+
"Collector's Rare", "Prismatic Collector's Rare", "Starfoil Rare", "Ultimate Rare",
51+
"Starlight Rare", "Ghost Rare", "Gold Ghost Rare",
52+
"Platinum Secret Rare", "Quarter Century Secret Rare", "Prismatic Ultimate Rare", "Pharaoh's Rare",
53+
"Duel Terminal Rare", "Parallel Rare"
5154
]
5255
},
5356
{

0 commit comments

Comments
 (0)