Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.cellRowStyles {
min-height: 48px;
margin-bottom: -37px;
width: 100%;
justify-content: space-between;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.cellRowStyles {
min-height: 48px;
margin-bottom: -27px;
width: 100%;
justify-content: space-between;
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ 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 @@ -179,7 +180,7 @@ class BottomSheetRangeCell extends Component {
<Cell
{ ...cellProps }
cellContainerStyle={ styles.cellContainerStyles }
cellRowContainerStyle={ styles.cellRowStyles }
cellRowContainerStyle={ rowStyles.cellRowStyles }
accessibilityRole={ 'none' }
value={ '' }
editable={ false }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,3 @@
flex-direction: column;
align-items: flex-start;
}

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