diff --git a/apps/web/src/component/common/input/TextArea.tsx b/apps/web/src/component/common/input/TextArea.tsx index 541a0d1e..206d14e2 100644 --- a/apps/web/src/component/common/input/TextArea.tsx +++ b/apps/web/src/component/common/input/TextArea.tsx @@ -46,6 +46,7 @@ export const TextArea = forwardRef(function id={id || textareaContext?.id} css={css` flex-grow: 1; + overflow: auto; ::placeholder { color: ${DESIGN_TOKEN_COLOR["gray500"]}; ${DESIGN_TOKEN_TEXT["body15Medium"]} diff --git a/apps/web/src/style/global.css b/apps/web/src/style/global.css index 711fafbb..f9660061 100644 --- a/apps/web/src/style/global.css +++ b/apps/web/src/style/global.css @@ -69,6 +69,7 @@ textarea { height: 1rem; background-color: transparent; display: none; + scrollbar-width: none; /* for firefox */ } ::-webkit-scrollbar-thumb {