This commit is contained in:
Alejandro Gomez 2023-01-09 23:29:39 +01:00
parent 58f5e50cea
commit 372afd878c
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,5 @@
.root-tabs > div {
padding: 5px 0;
background-color: #333;
}
border-radius: 10px;
}

View File

@ -35,6 +35,9 @@ export default function RootPage() {
<div className={`f-1 ${tab === RootTab.Global ? "active" : ""}`} onClick={() => setTab(RootTab.Global)}>
Global
</div>
<div className="f-1">
Messages
</div>
</div></> : null}
{followHints()}
<Timeline key={tab} pubkeys={follows} global={loggedOut || tab === RootTab.Global} />