mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-09-13 14:22:25 +03:00
Add all public servers; Make menu scrollable
This commit is contained in:
parent
7f40605bfe
commit
8a6b0bfdf9
2 changed files with 54 additions and 2 deletions
47
config.json
47
config.json
|
@ -6,7 +6,52 @@
|
||||||
"matrix.org",
|
"matrix.org",
|
||||||
"monero.social",
|
"monero.social",
|
||||||
"mozilla.org",
|
"mozilla.org",
|
||||||
"xmr.se"
|
"xmr.se",
|
||||||
|
"4d2.org",
|
||||||
|
"archaeo.social",
|
||||||
|
"bark.lgbt",
|
||||||
|
"calitabby.net",
|
||||||
|
"catgirl.cloud",
|
||||||
|
"comm.cx",
|
||||||
|
"digitalprivacy.diy",
|
||||||
|
"exarius.org",
|
||||||
|
"furryrefuge.com",
|
||||||
|
"g24.at",
|
||||||
|
"gemeinsam.jetzt",
|
||||||
|
"glasgow.social",
|
||||||
|
"gnulinux.club",
|
||||||
|
"grin.hu",
|
||||||
|
"hot-chilli.im",
|
||||||
|
"imagisphe.re",
|
||||||
|
"jonasled.de",
|
||||||
|
"magdeburg.jetzt",
|
||||||
|
"nope.chat",
|
||||||
|
"oblak.be",
|
||||||
|
"pcriot.org",
|
||||||
|
"pub.solar",
|
||||||
|
"rollenspiel.chat",
|
||||||
|
"socialnetwork24.com",
|
||||||
|
"synod.im",
|
||||||
|
"tchncs.de",
|
||||||
|
"tedomum.net",
|
||||||
|
"unredacted.org",
|
||||||
|
"we2.ee",
|
||||||
|
"fachschaften.org",
|
||||||
|
"pikaviestin.fi",
|
||||||
|
"federated.nexus",
|
||||||
|
"frei.chat",
|
||||||
|
"hyteck.de",
|
||||||
|
"norge.chat",
|
||||||
|
"private.coffee",
|
||||||
|
"the-apothecary.club",
|
||||||
|
"communick.com",
|
||||||
|
"data.coop",
|
||||||
|
"fsfe.org",
|
||||||
|
"hadoly.fr",
|
||||||
|
"sans-nuage.fr",
|
||||||
|
"libreon.fr",
|
||||||
|
"transgirl.cafe",
|
||||||
|
"deuxfleurs.fr"
|
||||||
],
|
],
|
||||||
"allowCustomHomeservers": true,
|
"allowCustomHomeservers": true,
|
||||||
|
|
||||||
|
|
|
@ -111,7 +111,14 @@ export function ServerPicker({
|
||||||
<Header size="300" style={{ padding: `0 ${config.space.S200}` }}>
|
<Header size="300" style={{ padding: `0 ${config.space.S200}` }}>
|
||||||
<Text size="L400">Homeserver List</Text>
|
<Text size="L400">Homeserver List</Text>
|
||||||
</Header>
|
</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) => (
|
{serverList?.map((serverName) => (
|
||||||
<MenuItem
|
<MenuItem
|
||||||
key={serverName}
|
key={serverName}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue