vue: join

This commit is contained in:
2021-09-15 19:06:15 +00:00
committed by Gitea
parent ed9301455d
commit 22025bd89e
25 changed files with 781 additions and 142 deletions
+20 -5
View File
@@ -10,6 +10,7 @@ html {
color: white;
}
//TODO: 삭제!!
table.tb_layout {
border-collapse: collapse;
padding: 0px;
@@ -17,7 +18,8 @@ table.tb_layout {
word-break: break-all;
}
html, body{
html,
body {
font-size: 13px;
}
@@ -30,10 +32,23 @@ html, body{
}
.float-left{
float:left;
.float-left {
float: left;
}
.float-right{
float:right;
.float-right {
float: right;
}
.a-right {
text-align: right;
}
.a-left {
text-align: left;
}
.a-center {
text-align: center;
}