Skip to content

Commit

Permalink
fix: 설명글 말풍선
Browse files Browse the repository at this point in the history
  • Loading branch information
jasper200207 committed Dec 5, 2024
1 parent 1dff324 commit 9f99a5f
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/components/Title/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,24 @@ const Title = ({ isTeam, name, description, imageUrl }: TitleProps) => {
bg="white"
borderRadius="base"
shadow="md"
_hover={{
h: 'auto',
}}
role="group"
>
<Text zIndex="2" w="100%" h="6" whiteSpace="pre-line" noOfLines={1}>
<Text
zIndex="2"
w="100%"
h="6"
_groupHover={{
h: '100%',
py: 3,
overflow: 'visible',
WebkitLineClamp: 'unset',
}}
whiteSpace="pre-wrap"
noOfLines={1}
>
{description}
</Text>
</Flex>
Expand Down

0 comments on commit 9f99a5f

Please sign in to comment.