diff options
| -rw-r--r-- | gui/packages/desktop/src/renderer/components/Cell.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/packages/desktop/src/renderer/components/Cell.js b/gui/packages/desktop/src/renderer/components/Cell.js index f4027e690e..27b5b9dce9 100644 --- a/gui/packages/desktop/src/renderer/components/Cell.js +++ b/gui/packages/desktop/src/renderer/components/Cell.js @@ -6,7 +6,7 @@ import PlainImg from './Img'; import { colors } from '../../config'; const styles = { - cell: Styles.createViewStyle({ + cellButton: Styles.createViewStyle({ backgroundColor: colors.blue, paddingLeft: 16, paddingRight: 16, @@ -115,7 +115,7 @@ export class CellButton extends Component<CellButtonProps, State> { const { children, style, cellHoverStyle, ...otherProps } = this.props; return ( <Button - style={[styles.cell, style, this.backgroundStyle(cellHoverStyle)]} + style={[styles.cellButton, style, this.backgroundStyle(cellHoverStyle)]} onHoverStart={this.onHoverStart} onHoverEnd={this.onHoverEnd} {...otherProps}> |
