We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a57621 + 3f3d39d commit a898536Copy full SHA for a898536
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "@editorjs/table",
3
"description": "Table for Editor.js",
4
- "version": "2.4.3",
+ "version": "2.4.4",
5
"license": "MIT",
6
"repository": "https://github.com/editor-js/table",
7
"files": [
@@ -50,4 +50,4 @@
50
"dependencies": {
51
"@codexteam/icons": "^0.0.6"
52
}
53
-}
+}
src/styles/table.pcss
@@ -18,6 +18,8 @@
18
box-sizing: border-box;
19
display: grid;
20
grid-template-columns: calc(100% - var(--cell-size)) var(--cell-size);
21
+ /* Bug-fix: https://github.com/editor-js/table/issues/175 */
22
+ z-index: 0;
23
24
&--readonly {
25
grid-template-columns: 100% var(--cell-size);
0 commit comments