mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2024-11-20 05:49:54 +01:00
fix akkoma's bugged "fix" for MFM overflow
https://akkoma.dev/AkkomaGang/akkoma-fe/issues/218 broke tooltips for user IDs and clipped emoji expansions on mouseover. That change was implemented to resolve issues allowing MFM to overlflow a post body. This fixes the original issue and prevents the reintroduction of the bug present in Akkoma.
This commit is contained in:
parent
555595cb68
commit
62d27899cd
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@
|
||||||
padding: var(--status-margin, $status-margin);
|
padding: var(--status-margin, $status-margin);
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
overflow: hidden;
|
overflow: clip;
|
||||||
|
overflow-clip-margin: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
|
|
Loading…
Reference in a new issue