Fix tables header corners

This commit is contained in:
Mojca Lorber 2020-09-01 16:25:30 +02:00
parent 447ba6aa64
commit d57eb68f93
2 changed files with 10 additions and 2 deletions

View file

@ -8,10 +8,9 @@
word-break: initial;
thead {
background-color: $color-concrete;
tr {
th {
background-color: $color-concrete;
border-bottom: 2px solid $color-white;
border-left: 2px solid $color-white;
font-weight: bold;
@ -31,6 +30,11 @@
&:first-child {
border-left: 0;
border-top-left-radius: 4px;
}
&:last-child {
border-top-right-radius: 4px;
}
}

View file

@ -87,4 +87,8 @@
margin-right: .5em;
}
}
table > tbody > tr:first-child > td {
border-top: 0;
}
}