Remove border for glossary and project

main
CAPEL Maxime 2023-12-21 15:21:11 +01:00
parent c3a9a8bbf9
commit 013d76697a
2 changed files with 1 additions and 3 deletions

View File

@ -82,7 +82,6 @@ fun app() {
.height(300.dp) .height(300.dp)
.width(250.dp) .width(250.dp)
.padding(10.dp) .padding(10.dp)
.border(1.dp, Color.Black)
) { ) {
val scrollState = rememberLazyListState() val scrollState = rememberLazyListState()
glossaries = loadGlossaries(appState.selectedProject!!) glossaries = loadGlossaries(appState.selectedProject!!)

View File

@ -44,8 +44,7 @@ fun projectsPage(
modifier = Modifier modifier = Modifier
.padding(10.dp) .padding(10.dp)
.width(200.dp) .width(200.dp)
.height(300.dp) .height(300.dp),
.border(1.dp, Color.Black),
verticalArrangement = Arrangement.spacedBy(10.dp) verticalArrangement = Arrangement.spacedBy(10.dp)
) { ) {
if (projects.isEmpty()) { if (projects.isEmpty()) {