Skip to content

Commit

Permalink
Revert "Reduce spacing between label and slider control (#23580)" (#2…
Browse files Browse the repository at this point in the history
…4109)

This reverts commit 2a67de0.
  • Loading branch information
antonis committed Jul 22, 2020
1 parent a6ac1bf commit a345129
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 14 deletions.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import { withPreferredColorScheme } from '@wordpress/compose';
*/
import Cell from './cell';
import styles from './range-cell.scss';
import rowStyles from './cellRowStyles.scss';
import borderStyles from './borderStyles.scss';

class BottomSheetRangeCell extends Component {
Expand Down Expand Up @@ -180,7 +179,7 @@ class BottomSheetRangeCell extends Component {
<Cell
{ ...cellProps }
cellContainerStyle={ styles.cellContainerStyles }
cellRowContainerStyle={ rowStyles.cellRowStyles }
cellRowContainerStyle={ styles.cellRowStyles }
accessibilityRole={ 'none' }
value={ '' }
editable={ false }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,10 @@
flex-direction: column;
align-items: flex-start;
}

.cellRowStyles {
min-height: 48px;
margin-bottom: -13px;
width: 100%;
justify-content: space-between;
}

0 comments on commit a345129

Please sign in to comment.