Card container components for a cleaner dashboard

This commit is contained in:
2025-08-30 21:24:48 +02:00
parent 6c0e427d0e
commit 9dbb0d6b4d
5 changed files with 46 additions and 41 deletions

View File

@@ -0,0 +1,17 @@
.cardColumn {
height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: stretch;
gap: 30px;
margin: 30px;
}
.cardRow {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: stretch;
gap: 30px;
}