fix: make whole server overview sheet scrollable, not just info & description
Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
parent
b0b7bbad1e
commit
ddb010cf55
|
|
@ -141,11 +141,11 @@ fun ServerContextSheet(
|
|||
)
|
||||
}
|
||||
|
||||
Column(Modifier.verticalScroll(rememberScrollState())) {
|
||||
Column(
|
||||
verticalArrangement = Arrangement.spacedBy(16.dp),
|
||||
modifier = Modifier
|
||||
.padding(top = 8.dp, start = 16.dp, end = 16.dp, bottom = 4.dp)
|
||||
.verticalScroll(rememberScrollState()),
|
||||
.padding(top = 8.dp, start = 16.dp, end = 16.dp, bottom = 4.dp),
|
||||
) {
|
||||
ServerOverview(server)
|
||||
|
||||
|
|
@ -254,6 +254,5 @@ fun ServerContextSheet(
|
|||
}
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue