style: playground params styles

This commit is contained in:
jialin
2024-06-19 09:35:18 +08:00
parent adbc2ffbdd
commit 9f34452c68
14 changed files with 318 additions and 124 deletions
+15
View File
@@ -1,6 +1,21 @@
.m-b-20 {
margin-bottom: 20px;
}
.m-l-10 {
margin-left: 10px;
}
.flex {
display: flex;
}
// space-between
.flex-between {
display: flex;
justify-content: space-between;
}
// align-items: center
.flex-center {
display: flex;
align-items: center;
}