💄(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:
@@ -19,6 +19,7 @@ and this project adheres to
|
|||||||
- ✅(backend) reduce flakiness on backend test #1769
|
- ✅(backend) reduce flakiness on backend test #1769
|
||||||
- 🐛(frontend) fix clickable main content regression #1773
|
- 🐛(frontend) fix clickable main content regression #1773
|
||||||
- 🐛(backend) fix TRASHBIN_CUTOFF_DAYS type error #1778
|
- 🐛(backend) fix TRASHBIN_CUTOFF_DAYS type error #1778
|
||||||
|
- 💄(frontend) fix icon position in callout block #1779
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
||||||
|
|||||||
@@ -97,7 +97,12 @@ const CalloutComponent = ({
|
|||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
<CalloutBlockStyle />
|
<CalloutBlockStyle />
|
||||||
<Box $position="relative">
|
<Box
|
||||||
|
$position="relative"
|
||||||
|
$css={css`
|
||||||
|
align-self: start;
|
||||||
|
`}
|
||||||
|
>
|
||||||
<BoxButton
|
<BoxButton
|
||||||
contentEditable={false}
|
contentEditable={false}
|
||||||
onClick={toggleEmojiPicker}
|
onClick={toggleEmojiPicker}
|
||||||
|
|||||||
Reference in New Issue
Block a user