We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b711b5 commit 69a7908Copy full SHA for 69a7908
1 file changed
components/Cards/PastEditionCard/PastEditionCard.tsx
@@ -9,10 +9,10 @@ interface PastEditonCardProp {
9
const PastEditonCard = ({ url }: PastEditonCardProp): JSX.Element => {
10
const year = url.split('.')[1];
11
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">
+ <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]">
13
<div className="flex items-center flex-wrap justify-between">
14
<h1 className="text-2xl text-white font-semibold">{year}</h1>
15
- <div>
+ <div className='transition'>
16
<a
17
href={url}
18
rel="noreferrer"
0 commit comments