Files
components/src/Table/Table.module.styl
2022-10-03 17:50:46 +02:00

30 lines
440 B
Stylus

@import '../config'
.table
border-spacing 0
width 100%
tr:not(:last-child) td
border-bottom 1px solid $darkGrayLight
tr th
border-bottom 2px solid $darkGrayLight
tr td:not(:first-child)
tr th:not(:first-child)
border-left 1px solid $darkGrayLight
th
font-weight bold
font-size rem(18)
th
td
padding 16px
text-align left
color black
@media (prefers-color-scheme dark)
color white
.parent
overflow-x auto