Skip to content

Commit

Permalink
Use the actual grid padding from theme
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandar-apostolov committed Nov 9, 2023
1 parent 4a21f26 commit 56f036a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.PaddingValues
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.RowScope
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.aspectRatio
import androidx.compose.foundation.layout.calculateEndPadding
import androidx.compose.foundation.layout.calculateStartPadding
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.material.Icon
import androidx.compose.material.IconButton
import androidx.compose.material.Scaffold
Expand Down Expand Up @@ -136,7 +138,7 @@ public fun CallContent(
modifier = Modifier
.fillMaxSize()
.weight(1f)
.padding(bottom = 2.dp),
.padding(bottom = VideoTheme.dimens.participantsGridPadding),
style = style,
videoRenderer = videoRenderer,
)
Expand Down

0 comments on commit 56f036a

Please sign in to comment.