🆙 add some more spaceing in the chat bubble

This commit is contained in:
duckietm
2026-03-02 13:44:01 +01:00
parent dc82d2cfd5
commit 45ef8ce06e
@@ -36,12 +36,12 @@ export const ChatInputStyleSelectorView: FC<ChatInputStyleSelectorViewProps> = p
popoverRect={popoverRect} popoverRect={popoverRect}
position={position} position={position}
> >
<NitroCardContentView className="bg-transparent max-h-[200px]!" overflow="hidden"> <NitroCardContentView className="bg-transparent max-h-[210px]!" overflow="hidden">
<Grid columnCount={3} overflow="auto"> <Grid columnCount={3} overflow="auto">
{chatStyleIds && chatStyleIds.length > 0 && chatStyleIds.map(styleId => ( {chatStyleIds && chatStyleIds.length > 0 && chatStyleIds.map(styleId => (
<Flex key={styleId} center pointer className="h-[30px]" onClick={() => selectStyle(styleId)}> <Flex key={styleId} center pointer className="h-[35px] w-[65px]" onClick={() => selectStyle(styleId)}>
<div className="bubble-container relative w-[50px]"> <div className="bubble-container relative w-[50px]">
<div className={`relative max-w-[350px] min-h-[26px] text-[14px] chat-bubble bubble-${styleId}`}>&nbsp;</div> <div className={`relative max-w-[65px] min-h-[26px] text-[14px] chat-bubble bubble-${styleId}`} />
</div> </div>
</Flex> </Flex>
))} ))}