Changed graph border width and corner shape

This commit is contained in:
Abdelilah El Aissaoui 2022-02-18 15:30:46 +01:00
parent 82d9479e55
commit fb377b9554

View File

@ -2,6 +2,7 @@ package app.ui
import androidx.compose.foundation.border
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.MaterialTheme
import androidx.compose.runtime.*
import androidx.compose.ui.Modifier
@ -84,8 +85,9 @@ fun RepositoryOpenPage(tabViewModel: TabViewModel) {
modifier = Modifier
.fillMaxSize()
.border(
width = 1.dp,
width = 2.dp,
color = MaterialTheme.colors.borderColor,
shape = RoundedCornerShape(4.dp)
)
) {
when (diffSelected) {