Fix add tag padding when there are no existing tags

This commit is contained in:
MM20 2022-09-25 19:26:09 +02:00
parent f1dbb84f61
commit 24895ca612
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -531,7 +531,7 @@ fun ReorderFavoritesGrid(viewModel: EditFavoritesSheetVM) {
contentPadding = PaddingValues(
start = MenuDefaults.DropdownMenuItemContentPadding.calculateStartPadding(LocalLayoutDirection.current),
end = MenuDefaults.DropdownMenuItemContentPadding.calculateEndPadding(LocalLayoutDirection.current),
top = 8.dp,
top = if(availableTags.isNotEmpty()) 8.dp else 0.dp,
),
text = {
Box {