We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 960bb6e commit f5338edCopy full SHA for f5338ed
2 files changed
packages/block-library/src/table/edit.js
@@ -332,6 +332,7 @@ export default class TableEdit extends Component {
332
return (
333
<CellTag key={ columnIndex } className={ classes }>
334
<RichText
335
+ className="wp-block-table__cell-content"
336
value={ content }
337
onChange={ this.onChange }
338
unstableOnFocus={ this.createOnFocus( cell ) }
packages/block-library/src/table/editor.scss
@@ -6,7 +6,7 @@
6
7
td,
8
th {
9
- padding: 0.5em;
+ padding: 0;
10
border: $border-width solid currentColor;
11
}
12
@@ -16,4 +16,8 @@
16
box-shadow: inset 0 0 0 1px $blue-medium-500;
17
border-style: double;
18
19
+
20
+ &__cell-content {
21
+ padding: 0.5em;
22
+ }
23
0 commit comments