feat(console): change table style

This commit is contained in:
surunzi
2019-09-27 12:05:37 +08:00
parent 3d843edb41
commit 8eba24488b
2 changed files with 12 additions and 2 deletions

View File

@@ -10,6 +10,7 @@
padding: 10px 10px 10px 40px;
background: #fff;
line-height: 20px;
border-bottom: 1px solid $gray-light;
.icon-clear,
.icon-info {
display: inline-block;

View File

@@ -116,15 +116,24 @@
table {
width: 100%;
background: #fff;
border-bottom: 1px solid $gray-light;
border-collapse: collapse;
box-shadow: $box-shadow;
border-radius: $border-radius;
overflow: hidden;
th {
background: $blue;
color: #fff;
}
th,
td {
padding: 10px;
border-left: 1px solid $gray;
padding: 3px $padding;
&:first-child {
border-left: none !important;
}
}
tr:nth-child(even) {
background: $gray-light;
}
}
.blue {