Skip to content

Commit

Permalink
Merge pull request #257 from SOPT-all/fix/#254/web-qa2
Browse files Browse the repository at this point in the history
[Fix] 클래스 신청하기 페이지 bottom기준으로 수정
  • Loading branch information
hansoojeongsj authored Jan 23, 2025
2 parents 63722da + 97b46e5 commit 4493ebf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion src/pages/reservation/components/TopInfoContent/index.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ export const gradientOverlayStyle = style({
});

export const textWrapperStyle = style({
position: 'relative',
display: 'flex',
position: 'absolute',
bottom: '3rem',
gap: '0.8rem',

paddingLeft: '2rem',
paddingRight:'2rem',
flexDirection: 'column',
zIndex: vars.zIndex.two,
});
2 changes: 1 addition & 1 deletion src/pages/reservation/components/TopInfoContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const TopInfoContent = ({ name, teacherNickname, imageUrl }: TopInfoContentProps
}}>
<div className={gradientOverlayStyle} />

<Flex direction="column" gap="0.8rem" paddingTop="12.4rem" paddingLeft="2rem" className={textWrapperStyle}>
<Flex className={textWrapperStyle}>
<Head level="h3" tag="h4" color="white">
{name}
</Head>
Expand Down

0 comments on commit 4493ebf

Please sign in to comment.