add base structure for card text as textref

This commit is contained in:
axolotle
2021-03-09 16:06:36 +01:00
parent a81079bf60
commit b195ea4b58
4 changed files with 116 additions and 5 deletions
+28
View File
@@ -6,3 +6,31 @@
html, body, #app {
height: 100%;
}
main {
height: calc(100vh - 56px);
}
// Layouts
.view {
display: flex;
flex-direction: column;
height: 100%;
}
.split-screen {
display: flex;
height: 100%;
& > * {
flex-basis: 50%;
}
}
.container-fill {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}