1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-31 15:34:39 +04:00
Files
tabler/scss/ui/_tables.scss
T
2019-10-17 22:34:27 +02:00

45 lines
431 B
SCSS

.table {
color: inherit;
thead {
th {
background: $min-black;
border-width: $table-border-width;
@extend .subheader;
}
}
th {
color: $text-muted;
}
}
.table-nowrap {
th,
td {
white-space: nowrap;
}
}
.table-md {
th,
td {
padding: .5rem;
}
}
.table-vcenter {
td,
th {
vertical-align: middle;
}
}
.table-center {
td,
th {
text-align: center;
}
}