File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export default function CertificateCard({ certificate }: { certificate: Certific
6363 </ div >
6464 < div >
6565 < motion . div
66- className = "absolute top-3 right-3 bg-white/70 backdrop-blur-md rounded-full p-2 border border-white/60 shadow-sm transition-opacity duration-300"
66+ className = "absolute top-3 right-3 bg-white/70 backdrop-blur-md rounded-full p-2 border border-white/60 shadow-sm transition-opacity duration-300 z-10 group-hover:opacity-100 opacity-80 "
6767 >
6868 < FiArrowUpRight className = "text-slate-600" />
6969 </ motion . div >
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ export default function AllCertificatesPage() {
9090 >
9191 < option value = "" > All</ option >
9292 { categories . map ( ( cat : Category ) => (
93- < option key = { cat . id } value = { cat . id } >
93+ < option key = { cat . id } value = { cat . id } className = '' >
9494 { cat . name }
9595 </ option >
9696 ) ) }
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ export default function ProjectsPage() {
121121 </ div >
122122 </ div >
123123
124- { isLoading && < div className = "h-96 flex justify-center items-center" > < Loader /> </ div > }
124+ { isLoading && < Loader /> }
125125 { isError && < div className = "text-center py-16 text-red-500" > Failed to load projects.</ div > }
126126
127127 { ! isLoading && ! isError && (
You can’t perform that action at this time.
0 commit comments