Skip to content

Commit

Permalink
[lexical-playground] Bug Fix: Allow scrolling if the table cell conte…
Browse files Browse the repository at this point in the history
…nt overflows (#6966)
  • Loading branch information
Parasaran-Python authored Dec 14, 2024
1 parent db1464c commit 70cfd2f
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,14 @@
padding: 6px 8px;
position: relative;
outline: none;
overflow: auto;
}
/*
A firefox workaround to allow scrolling of overflowing table cell
ref: https://bugzilla.mozilla.org/show_bug.cgi?id=1904159
*/
.PlaygroundEditorTheme__tableCell > * {
overflow: inherit;
}
.PlaygroundEditorTheme__tableCellResizer {
position: absolute;
Expand Down

0 comments on commit 70cfd2f

Please sign in to comment.