💄(frontend) fix icon position in callout block

Make sure the icon in the callout block is aligned to the top instead of
centered when we have multi-line content.

Signed-off-by: Anto59290 <antonin59290@hotmail.com>
This commit is contained in:
Anto59290
2026-01-09 15:26:54 +01:00
committed by Anthony LC
parent b1a18b2477
commit fa6f3e8b7c
2 changed files with 7 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ and this project adheres to
- ✅(backend) reduce flakiness on backend test #1769
- 🐛(frontend) fix clickable main content regression #1773
- 🐛(backend) fix TRASHBIN_CUTOFF_DAYS type error #1778
- 💄(frontend) fix icon position in callout block #1779
### Security

View File

@@ -97,7 +97,12 @@ const CalloutComponent = ({
`}
>
<CalloutBlockStyle />
<Box $position="relative">
<Box
$position="relative"
$css={css`
align-self: start;
`}
>
<BoxButton
contentEditable={false}
onClick={toggleEmojiPicker}