Skip to content

Commit

Permalink
Details panel has spurious padding at the top and bottom
Browse files Browse the repository at this point in the history
(cherry picked from commit 3de49fe)
  • Loading branch information
fscarponi authored and lamba92 committed Dec 4, 2023
1 parent 8904c6d commit 4cf0342
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ internal fun PackageOverviewTab(
) {
Column(
verticalArrangement = Arrangement.spacedBy(4.dp),
modifier = Modifier.fillMaxSize()
modifier = Modifier.fillMaxSize().padding(start = 4.dp)
) {
Row(
horizontalArrangement = Arrangement.spacedBy(4.dp),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fun PackageSearchInfoPanel(
Box(modifier = Modifier.fillMaxWidth()) {
Column(
modifier = Modifier
.padding(start = 4.dp, end = PackageSearchMetrics.scrollbarWidth)
.padding(end = PackageSearchMetrics.scrollbarWidth)
.verticalScroll(viewModel.scrollState)
) {
val tab = activeTab
Expand Down

0 comments on commit 4cf0342

Please sign in to comment.