Skip to content

Commit

Permalink
Fix merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Tug committed Mar 19, 2019
1 parent d38fc17 commit aece780
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ export class RichText extends Component {
this.lastEventCount = undefined; // force a refresh on the native side
}

let minHeight = styles[ 'editor-rich-text' ].minHeight;
let minHeight = styles[ 'block-editor-rich-text' ].minHeight;
if ( style && style.minHeight ) {
minHeight = style.minHeight;
}
Expand Down
3 changes: 2 additions & 1 deletion packages/block-editor/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import '@wordpress/viewport';
*/
import './store';
import './hooks';
import { SETTINGS_DEFAULTS } from './store/defaults';

export * from './components';

export { SETTINGS_DEFAULTS } from './store/defaults';
export { SETTINGS_DEFAULTS };
2 changes: 0 additions & 2 deletions packages/block-library/src/code/theme.native.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/* stylelint-disable font-family-no-missing-generic-family-keyword */

@import "variables.scss";

.blockCode {
font-family: $default-monospace-font;
}
Expand Down
2 changes: 0 additions & 2 deletions packages/block-library/src/image/styles.native.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
// @format

@import "variables.scss";

.imageContainer {
flex: 1;
justify-content: center;
Expand Down
2 changes: 0 additions & 2 deletions packages/block-library/src/nextpage/editor.native.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
// @format

@import "variables.scss";

.block-library-nextpage__container {
align-items: center;
padding: 4px 4px 4px 4px;
Expand Down

0 comments on commit aece780

Please sign in to comment.