Initial commit

This commit is contained in:
2021-05-31 22:36:54 +02:00
commit 50801d45ce
99 changed files with 4299 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
.flex-row {
display: flex;
}
.flex-1 {
flex: 1;
}
.wrap {
flex-wrap: wrap;
}
.j-center {
justify-content: center;
}
.ai-center {
align-items: center;
}
.direction-row-reverse {
flex-direction: row-reverse;
}