fix: edit lists crashing and list rendering issue in Firefox (#2920)

* one liner fix editor

* fix firefox rendering lists

* moved fixes

* moved fixes per ajbura
This commit is contained in:
Shea
2026-05-03 15:15:08 +03:00
committed by GitHub
parent b9c0f01e25
commit 337ec82211
2 changed files with 10 additions and 2 deletions
+6
View File
@@ -129,3 +129,9 @@ textarea {
audio:not([controls]) {
display: none !important;
}
/* Fix Firefox rendering lists that have empty items with those items collapsed in on eachother */
li p::before {
content: '';
display: inline-block;
}