diff --git a/packages/block-library/src/columns/editor.native.scss b/packages/block-library/src/columns/editor.native.scss
index beb5ba2521844..2862a849b8a93 100644
--- a/packages/block-library/src/columns/editor.native.scss
+++ b/packages/block-library/src/columns/editor.native.scss
@@ -10,14 +10,10 @@
margin: $block-edge-to-content / 2;
}
-.rangeCell {
- flex-direction: row;
- padding-left: $grid-unit;
- padding-right: $grid-unit;
-}
-
.cellContainerStyle {
flex-direction: row;
- padding-top: $grid-unit-10;
- padding-bottom: $grid-unit-10;
+ min-height: 48px;
+ align-items: center;
+ margin-top: $grid-unit;
+ margin-bottom: $grid-unit;
}
diff --git a/packages/components/src/mobile/bottom-sheet/cell.native.js b/packages/components/src/mobile/bottom-sheet/cell.native.js
index cf89a2b2dacfc..2859fe1fe3bd4 100644
--- a/packages/components/src/mobile/bottom-sheet/cell.native.js
+++ b/packages/components/src/mobile/bottom-sheet/cell.native.js
@@ -326,9 +326,13 @@ class BottomSheetCell extends Component {
/>
) }
-
- { label }
-
+ { label && (
+
+ { label }
+
+ ) }
{ customActionButton && (