custumize table style

This commit is contained in:
piharpi
2020-04-02 19:56:17 +07:00
parent fc70b0feaa
commit 442e9f8c99
3 changed files with 26 additions and 9 deletions

View File

@@ -291,24 +291,26 @@ sup {
}
// Table
.overflow-table {
overflow-x: auto;
}
table {
margin: 0 auto;
margin-top: $spacing-half;
border-collapse: collapse;
background: $white;
font-size: $small-font-size;
th {
thead {
font-weight: $bold-weight;
background: #f5f5f5;
text-align: left;
border-bottom: 2px solid #f5f5f5;
color: $black;
border-bottom: 1px solid $light;
}
th,
td,
tr {
border: 1px solid $light;
padding: 4px 8px;
padding: 2px 7px;
}
}