antares/src/renderer/scss/_fake-tables.scss

38 lines
522 B
SCSS
Raw Normal View History

2020-06-10 19:29:10 +02:00
.table {
2020-07-24 13:26:56 +02:00
border-collapse: collapse;
border-spacing: 0;
width: 100%;
display: table;
table-layout: fixed;
2020-06-10 19:29:10 +02:00
2020-07-31 18:16:28 +02:00
.tbody {
display: table-row-group;
}
.tr {
display: table-row;
}
// Scollable tables
&.table-scroll {
display: block;
overflow-x: auto;
padding-bottom: 0.75rem;
white-space: nowrap;
}
.thead {
display: table-header-group;
}
.td,
.th {
padding: $unit-3 $unit-2;
display: table-cell;
}
.th {
border-bottom-width: $border-width-lg;
2020-07-24 13:26:56 +02:00
}
}