File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
WooCommerce/src/main/kotlin/com/woocommerce/android/ui/woopos/home Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -146,12 +146,10 @@ private fun WooPosHomeScreen(
146146 )
147147 Spacer (modifier = Modifier .width(16 .dp.toAdaptivePadding()))
148148 }
149- Row (modifier = Modifier .width(cartWidthDp)) {
150- Spacer (modifier = Modifier .width(24 .dp.toAdaptivePadding()))
151149 Row (
152150 modifier = Modifier .width(cartWidthDp).background(MaterialTheme .colors.surface)
153151 ) {
154- Spacer (modifier = Modifier .width(24 .dp))
152+ Spacer (modifier = Modifier .width(24 .dp.toAdaptivePadding() ))
155153 Box {
156154 WooPosHomeScreenCart (
157155 modifier = Modifier
Original file line number Diff line number Diff line change @@ -73,10 +73,8 @@ private fun WooPosCartScreen(
7373 modifier = modifier
7474 ) {
7575 Box (
76- Modifier .padding(24 .dp.toAdaptivePadding())
7776 Modifier
78- .padding(24 .dp).background(MaterialTheme .colors.surface)
79-
77+ .padding(24 .dp.toAdaptivePadding()).background(MaterialTheme .colors.surface)
8078 ) {
8179 Column {
8280 CartToolbar (
You can’t perform that action at this time.
0 commit comments