Skip to content

Commit

Permalink
Merge pull request #435 from boostcampwm-2024/feature/fe/#258-qa
Browse files Browse the repository at this point in the history
[FE][Fix] : ๋น„๋กœ๊ทธ์ธ์‹œ ๊ธ€์ž๊ฐ€ ํŽ˜์ด์ง€ ๋ฐ–์œผ๋กœ ๋ฒ—์–ด๋‚˜๋Š” ๋ฌธ์ œ ํ•ด๊ฒฐ
  • Loading branch information
happyhyep authored Dec 5, 2024
2 parents aa5f51d + 94e760f commit feb98ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/component/bottomsheet/BottomSheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const BottomSheet = ({

return (
<div
className="transition-height absolute bottom-0 left-0 right-0 rounded-t-2xl bg-white shadow-lg duration-700 ease-out"
className="transition-height absolute bottom-0 left-0 right-0 overflow-hidden rounded-t-2xl bg-white shadow-lg duration-700 ease-out"
style={{
backgroundColor: `${backgroundColor}`,
height: `${sheetHeight * 100}vh`,
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export const Main = () => {
<hr className="my-2" />
</Fragment>
))}
<div className="h-20" />
<div className="h-10" />
</BottomSheet>
) : (
<BottomSheet minHeight={MIN_HEIGHT} maxHeight={MAX_HEIGHT} backgroundColor="#F1F1F1F2">
Expand Down

0 comments on commit feb98ff

Please sign in to comment.