Skip to content

Commit

Permalink
Change styles name
Browse files Browse the repository at this point in the history
  • Loading branch information
lukewalczak committed Aug 7, 2020
1 parent 249a71c commit c569bd2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/block-library/src/column/edit.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
import {
PanelBody,
RangeControl,
UnsupportedFooterControl,
FooterMessageControl,
} from '@wordpress/components';
import { __ } from '@wordpress/i18n';
/**
Expand Down Expand Up @@ -97,7 +97,7 @@ function ColumnEdit( {
/>
</PanelBody>
<PanelBody>
<UnsupportedFooterControl
<FooterMessageControl
label={ __(
'Note: Column layout may vary between themes and screen sizes'
) }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function FooterMessageCell( { textAlign, ...props } ) {
editable={ false }
value={ '' }
accessibilityRole={ 'text' }
labelStyle={ [ styles.unsupportedFooterCell, { textAlign } ] }
labelStyle={ [ styles.footerMessageCell, { textAlign } ] }
/>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@
color: #c3c4c7;
}

// Unsupported Footer Cell
// Footer Message Cell

.unsupportedFooterCell {
.footerMessageCell {
font-size: $text-editor-font-size;
color: $gray;
flex: 1;
Expand Down

0 comments on commit c569bd2

Please sign in to comment.