Added blazor MewExplorer project

This commit is contained in:
Felix Weiß
2023-06-28 23:31:07 +02:00
parent bc765b870a
commit 15cc2e245d
47 changed files with 1580 additions and 1 deletions

View File

@@ -0,0 +1,40 @@
.page {
background: var(--dark-3);
position: relative;
height: 100vh;
display: flex;
flex: 1;
flex-direction: column;
align-items: stretch;
justify-content: stretch;
}
.hor-layout {
display: flex;
flex-direction: row;
flex: 1;
}
main {
flex: 1;
display: flex;
}
main article {
flex: 1;
}
.sidebar {
background: var(--dark-1);
flex-basis: 25%;
}