Add all public servers; Make menu scrollable

This commit is contained in:
gongchandang49 2025-09-03 04:40:35 +00:00
parent 7f40605bfe
commit 8a6b0bfdf9
2 changed files with 54 additions and 2 deletions

View file

@ -111,7 +111,14 @@ export function ServerPicker({
<Header size="300" style={{ padding: `0 ${config.space.S200}` }}>
<Text size="L400">Homeserver List</Text>
</Header>
<div style={{ padding: config.space.S100, paddingTop: 0 }}>
<div style={{
padding: config.space.S100,
paddingTop: 0,
maxHeight: 320,
overflowY: 'auto',
WebkitOverflowScrolling: 'touch',
}}
>
{serverList?.map((serverName) => (
<MenuItem
key={serverName}