Skip to content

Commit 69a7908

Browse files
authored
fix: resolve UI transition effect and tailwind typo issue in PastEditionCard (#912)
Co-authored-by: Ayush <bhandariayush935@gmail.com>
1 parent 5b711b5 commit 69a7908

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

components/Cards/PastEditionCard/PastEditionCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ interface PastEditonCardProp {
99
const PastEditonCard = ({ url }: PastEditonCardProp): JSX.Element => {
1010
const year = url.split('.')[1];
1111
return (
12-
<div className="bg-white bg-opacity-10 backdrop-blur-lg bg-clip-padding shadow-lg p-4 w-full mx-auto border-[1.66px] border-[#FFFFFF66] rounded-xl">
12+
<div className="bg-white bg-opacity-10 backdrop-blur-lg bg-clip-padding shadow-lg p-4 w-full mx-auto border-[1.66px] border-[#FFFFFF66] rounded-xl transition-all hover:scale-[1.03]">
1313
<div className="flex items-center flex-wrap justify-between">
1414
<h1 className="text-2xl text-white font-semibold">{year}</h1>
15-
<div>
15+
<div className='transition'>
1616
<a
1717
href={url}
1818
rel="noreferrer"

0 commit comments

Comments
 (0)