fixing warnings related to emotion

Summary: Fixes some warnings that were caused by the switch to react-emotion.

Reviewed By: jknoxville

Differential Revision: D9483185

fbshipit-source-id: 8e49469772efd37f18342252653648618e644d55
This commit is contained in:
Daniel Büchele
2018-08-23 12:48:15 -07:00
committed by Facebook Github Bot
parent 3bb86ae5bf
commit 2c071e226f
3 changed files with 5 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ import {
colors,
FlexRow,
DataInspector,
styled,
} from 'sonar';
import {SonarPlugin} from 'sonar';
@@ -55,12 +56,12 @@ const CHANGELOG_COLUMN_SIZES = {
const UPDATED_LABEL = <Text color={colors.lime}>Updated</Text>;
const DELETED_LABEL = <Text color={colors.cherry}>Deleted</Text>;
const InspectorColumn = FlexColumn.extends({
const InspectorColumn = styled(FlexColumn)({
flexGrow: 0.2,
padding: '16px',
});
const ChangelogColumn = FlexColumn.extends({
const ChangelogColumn = styled(FlexColumn)({
flexGrow: 0.8,
padding: '16px',
});