Skip to content

Commit

Permalink
fix(VSimpleTable): bottom border of tbody th (#10594)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Henry <AMajesticPotatoe@gmail.com>
  • Loading branch information
jacekkarczmarczyk and MajesticPotatoe authored Feb 18, 2020
1 parent c978f11 commit c014bdc
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions packages/vuetify/src/components/VDataTable/VSimpleTable.sass
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@

tbody
tr
&:not(:last-child) td
&:not(.v-data-table__mobile-row)
border-bottom: thin solid map-get($material, 'dividers')

&:last-child
border-bottom: thin solid map-get($material, 'dividers')
&:not(:last-child)
td,
th
&:not(.v-data-table__mobile-row)
border-bottom: thin solid map-get($material, 'dividers')

&:last-child
border-bottom: thin solid map-get($material, 'dividers')

&.active
background: map-deep-get($material, 'table', 'active')
Expand Down

0 comments on commit c014bdc

Please sign in to comment.