Fix #648: workaround for a regression in Firefox that breaks the scrollbar

Thanks [Raph](https://github.com/raphgilles) for the workaround!
This commit is contained in:
John Livingston 2025-03-11 15:38:05 +01:00
parent 04ebfc9002
commit 5216076844
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
2 changed files with 11 additions and 1 deletions

View File

@ -7,7 +7,8 @@
* Translations updates.
* Slovak translation integration.
* Differenciate pt-PT and pt-BR translations.
* Fix styling for "configure mod_firewall" button + Peertube v7.0.0 compatibility
* Fix styling for "configure mod_firewall" button + Peertube v7.0.0 compatibility.
* Fix #648: workaround for a regression in Firefox that breaks the scrollbar (Thanks [Raph](https://github.com/raphgilles) for the workaround!).
## 12.0.2

View File

@ -255,3 +255,12 @@ body.converse-embedded {
}
}
}
/* stylelint-disable-next-line no-duplicate-selectors */
#conversejs {
converse-chat-content {
// Workaround for a regression in Firefox 136.
// See https://github.com/JohnXLivingston/peertube-plugin-livechat/issues/648
justify-content: normal !important;
}
}