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.
1 parent 3ae6da1 commit bd2c868Copy full SHA for bd2c868
example/diff-table.css
@@ -25,6 +25,11 @@
25
padding: 1px 2px;
26
background: #fff;
27
}
28
+.diff-wrapper.diff td:empty:after,
29
+.diff-wrapper.diff th:empty:after {
30
+ content: " ";
31
+ visibility: hidden;
32
+}
33
.diff-wrapper.diff td a,
34
.diff-wrapper.diff th a {
35
color: #000;
example/diff-table.scss
@@ -52,6 +52,12 @@
52
53
background: $bg-color;
54
55
+ // make empty cell has height
56
+ &:empty:after {
57
+ content: ' ';
58
59
+ }
60
+
61
a {
62
63
cursor: inherit;
0 commit comments