removed forum, todos, added p2p info page & lots of minor changes/fixes

This commit is contained in:
mrfry 2023-03-26 19:16:56 +02:00
parent 32522097c0
commit e2d304c130
28 changed files with 303 additions and 954 deletions

View file

@ -0,0 +1,44 @@
.container {
padding: 10px;
}
.infoRow {
display: flex;
}
.infoRow > * {
padding: 0px 8px;
}
.infoRow :first-child {
flex: 1;
display: flex;
justify-content: flex-end;
}
.infoRow :last-child {
flex: 2;
color: var(--text-color);
}
.peerContainer, .peerHeader {
display: flex;
justify-content: space-around;
align-content: center;
padding: 5px 10px;
}
.peerContainer {
color: var(--text-color);
}
.peerContainer > *, .peerHeader > * {
flex: 1;
}
.title {
color: var(--text-color);
font-size: 20px;
text-align: center;
}