components/src/dzeio/Table/Table.module.styl
Florian Bouillon 9ab56544d9 Update
Signed-off-by: Avior <github@avior.me>
2021-09-24 17:30:58 +02:00

39 lines
706 B
Stylus

@import '../config'
.table
border-spacing 0
width 100%
tr
$radius = 16px
th:first-child
border-top-left-radius $radius
border-bottom-left-radius $radius
th:last-child
border-top-right-radius $radius
border-bottom-right-radius $radius
&.horizontalBorders tr:not(:last-child) td
border-bottom 1px solid $darkGrayLight
&.verticalBorders tr td:not(:first-child)
border-left 1px solid $darkGrayLight
th
td
padding 16px
text-align left
color black
@media (prefers-color-scheme dark)
color white
th
background $lightGrayLight
color $darkGrayLight
@media (prefers-color-scheme dark)
background $lightGrayDark
color $darkGrayDark
.parent
overflow-x auto