Skip to content

Commit ff6993c

Browse files
committed
fix: padding
1 parent 3acc939 commit ff6993c

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

app/src/main/java/to/bitkit/ui/screens/widgets/price/PricePreviewScreen.kt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ fun PricePreviewContent(
145145
pricePreferences = pricePreferences,
146146
priceDTO = priceDTO,
147147
modifier = Modifier
148-
.weight(1f)
149148
.fillMaxWidth(),
150149
)
151150
} else {
@@ -155,7 +154,12 @@ fun PricePreviewContent(
155154

156155
Row(
157156
modifier = Modifier
158-
.padding(16.dp)
157+
.padding(
158+
start = 16.dp,
159+
end = 16.dp,
160+
bottom = 16.dp,
161+
top = 22.dp,
162+
)
159163
.fillMaxWidth()
160164
.testTag("buttons_row"),
161165
horizontalArrangement = Arrangement.spacedBy(16.dp),
@@ -246,7 +250,7 @@ private fun WidgetCarousel(
246250
textAlign = androidx.compose.ui.text.style.TextAlign.Center,
247251
)
248252

249-
VerticalSpacer(8.dp)
253+
VerticalSpacer(16.dp)
250254

251255
Row(
252256
modifier = Modifier

0 commit comments

Comments
 (0)