Skip to content

Commit 3de18f5

Browse files
authored
Fix zero width of first spacer columns in case multiple such colums are present (#5454)
* Fix zero width of first spacer columns in case multiple such colums are present. No-Issue Signed-off-by: Felix Fontein <felix@fontein.de> * Add empty line before comment.
1 parent 721510f commit 3de18f5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/components/render-plugin-doc.scss

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
// The !important is needed here to avoid the value being overridden
2525
// by table.css injected by some dependencies.
2626
width: 20px !important;
27+
28+
// In case of multiple indents, it seems that the first indent still
29+
// has width 0. Adding a min-width seems to fix it on Chrome and Firefox.
30+
min-width: 20px;
2731
border-top: 0;
2832
border-bottom: 0;
2933
}

0 commit comments

Comments
 (0)