receptty.org/sass/_tables.scss

26 lines
248 B
SCSS
Raw Normal View History

2019-10-30 11:58:46 +01:00
table {
border: 1px solid $border;
border-radius:3px;
2020-01-01 18:46:07 +01:00
background:$secondary;
2019-10-30 11:58:46 +01:00
padding:0;
clear:both;
thead {
th {
padding:1em;
border-bottom:1px dashed $border;
}
}
tbody {
tr {
td {
padding:.5em .8em;
}
}
}
}