Adding back padding on first and last columns of table element

parent e71dc2d1
......@@ -18,3 +18,8 @@
border-radius: 3px;
}
.el-table td:first-child .cell,
.el-table th:first-child .cell {
padding-left: 10px;
}
// Element UI
@import "~element-ui/lib/theme-chalk/index.css";
// Overwrite Label heights
.el-form-item__label {
line-height: normal;
}
// Overwrite table row heights
.el-table td, .el-table th {
padding: 5px 0;
}
// Make pagination more clear
.el-pager, .el-pager li {
font-weight: normal;
}
......@@ -15,3 +18,7 @@
border: 1px solid #d8dce5;
border-radius: 3px;
}
// Add back the padding on first/last column of table
.el-table td:first-child .cell, .el-table th:first-child .cell {
padding-left: 10px;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment