Add links to meetings on Dashboard

This commit is contained in:
2020-09-04 19:00:52 +02:00
parent 962b30edf0
commit 353ee05414
3 changed files with 48 additions and 66 deletions

View File

@@ -39,7 +39,7 @@ export default function Dashboard({ currentUser }) {
<>
<NavBar title='Dashboard' />
{loading ? (
<Panel className={'app-container'}>
<Panel className={'app-container-small'}>
<h2>Invitations</h2>
<h4>Confirmed</h4>
<Paragraph style={{ marginTop: 30 }} graph='square'>
@@ -51,7 +51,7 @@ export default function Dashboard({ currentUser }) {
</Paragraph>
</Panel>
) : (
<Panel className={'app-container'}>
<Panel className={'app-container-small'}>
<h2>Invitations</h2>
{confirmed && (
<MeetingList

View File

@@ -4,6 +4,12 @@
background-color: rgba(255, 255, 255, 0.6);
}
.app-container-small {
max-width: 760px;
margin: 30px auto;
background-color: rgba(255, 255, 255, 0.6);
}
.form-container {
max-width: 373px;
margin: 0 auto;