diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-10-01 12:34:09 -0300 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-10-01 16:39:02 -0300 |
| commit | 0d7ada72a80f7670fbbe7b80ae037513ad5ea2c3 (patch) | |
| tree | 2b673237565f9527cc826d6a40a9af0c6dc28f4d | |
| parent | 5fe178e547245b46bfde421413a133a030bbf8f1 (diff) | |
| download | mullvadvpn-0d7ada72a80f7670fbbe7b80ae037513ad5ea2c3.tar.xz mullvadvpn-0d7ada72a80f7670fbbe7b80ae037513ad5ea2c3.zip | |
Rename `style.cell` into `style.cellButton`
| -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}> |
