fix table padding
This commit is contained in:
parent
dc460c4cb1
commit
f34371a955
1 changed files with 9 additions and 9 deletions
|
@ -15,26 +15,21 @@ table.table,
|
|||
padding-right: $spacing-vertical * 2/3;
|
||||
}
|
||||
|
||||
thead {
|
||||
color: var(--text-color);
|
||||
border-bottom: var(--table-border);
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
tr th,
|
||||
tr td {
|
||||
font-size: 13px;
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
th {
|
||||
font-family: 'metropolis-semibold';
|
||||
border: 0;
|
||||
padding: $spacing-vertical * 2/3 $spacing-vertical * 1/3;
|
||||
}
|
||||
|
||||
td {
|
||||
font-family: 'metropolis-medium';
|
||||
color: var(--color-help);
|
||||
padding: $spacing-vertical * 1/6 0;
|
||||
padding: $spacing-vertical * 1/3 $spacing-vertical * 1/3;
|
||||
|
||||
.btn:not(.btn--link) {
|
||||
display: inline;
|
||||
|
@ -50,6 +45,11 @@ table.table,
|
|||
padding-left: $spacing-vertical * 1/3;
|
||||
}
|
||||
|
||||
thead {
|
||||
color: var(--text-color);
|
||||
border-bottom: var(--table-border);
|
||||
}
|
||||
|
||||
tbody {
|
||||
tr {
|
||||
border-bottom: var(--table-item-border);
|
||||
|
|
Loading…
Add table
Reference in a new issue