Skip to content

Commit

Permalink
Merge pull request #22 from 9oormDari/dev
Browse files Browse the repository at this point in the history
[HOTFIX] - ๋นŒ๋“œ์˜ค๋ฅ˜ ์ˆ˜์ • ๊ฒธ ๋ฐฐํฌ ์žฌ์ ๊ฒ€
  • Loading branch information
karpitony authored Sep 27, 2024
2 parents 703c2ec + 0409eaa commit c19f982
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Mainpage/AdditionalIntroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function AdditionalIntroSection() {
๊ตฌ๋ฆ„๋‹ค๋ฆฌ์˜ <br />
ํŠน์ง•์€ ๋ฌด์—‡์ผ๊นŒ์š”?
</h2>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div className="place-items-center grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
{items.map((item, index) => (
<Item
key={index}
Expand All @@ -68,7 +68,7 @@ export default function AdditionalIntroSection() {
๊ตฌ๋ฆ„๋‹ค๋ฆฌ ํ•จ๊ป˜๋ผ๋ฉด, <br />
๋ฌด์—‡์ด ๋‹ค๋ฅธ๊ฐ€์š”?
</h2>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
<div className="place-items-center grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
{additionalItems.map((item, index) => (
<Item
key={index}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Mainpage/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Item: React.FC<ItemProps> = ({ text, image }) => {

return (
<div
className={cn
className={cn(
"relative h-[70px] md:h-[300px] w-[300px] p-5",
"transform transition-transform",
"duration-300 hover:scale-105 rounded-lg bg-[#E8EAF8] shadow-lg"
Expand Down

0 comments on commit c19f982

Please sign in to comment.