Skip to content

Commit c62cc24

Browse files
authored
Merge pull request #36 from parksaerom/fix/card-width-mobile
Fix inconsistent ServiceCard width on mobile view
2 parents e74de58 + aa8ff43 commit c62cc24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/sections/About.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const ServiceCard: React.FC<IServiceCard> = ({ index, title, icon }) => (
2222
tiltMaxAngleY={30}
2323
glareColor="#aaa6c3"
2424
>
25-
<div className="xs:w-[250px] w-full">
25+
<div className="max-w-[250px] w-full xs:w-[250px]">
2626
<motion.div
2727
variants={fadeIn("right", "spring", index * 0.5, 0.75)}
2828
className="green-pink-gradient shadow-card w-full rounded-[20px] p-[1px]"

0 commit comments

Comments
 (0)