Skip to content

Commit

Permalink
Missing border radius when no <tfoot>
Browse files Browse the repository at this point in the history
  • Loading branch information
woXrooX committed Jul 7, 2023
1 parent 027217c commit ed6f073
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions source/js/SPA/css.js
Original file line number Diff line number Diff line change
Expand Up @@ -1801,6 +1801,22 @@ export default class CSS{
}
}
&:not(:has(tfoot)) tbody{
& > tr{
&:last-child{
& > td{
&:first-child{
border-bottom-left-radius: var(--radius);
}
&:last-child{
border-bottom-right-radius: var(--radius);
}
}
}
}
}
& > tfoot{
background-color: var(--color-surface-1);
border-block-start: 1px solid var(--color-surface-3);
Expand Down

0 comments on commit ed6f073

Please sign in to comment.