receptty.org/sass/_tables.scss
2020-02-02 10:46:40 +01:00

26 lines
248 B
SCSS

table {
border: 1px solid $border;
border-radius:3px;
background:$secondary;
padding:0;
clear:both;
thead {
th {
padding:1em;
border-bottom:1px dashed $border;
}
}
tbody {
tr {
td {
padding:.5em .8em;
}
}
}
}