mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
💄(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:
parent
b1a18b2477
commit
fa6f3e8b7c
2 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -97,7 +97,12 @@ const CalloutComponent = ({
|
|||
`}
|
||||
>
|
||||
<CalloutBlockStyle />
|
||||
<Box $position="relative">
|
||||
<Box
|
||||
$position="relative"
|
||||
$css={css`
|
||||
align-self: start;
|
||||
`}
|
||||
>
|
||||
<BoxButton
|
||||
contentEditable={false}
|
||||
onClick={toggleEmojiPicker}
|
||||
|
|
|
|||
Loading…
Reference in a new issue