Files
tabler/scss/ui/_tables.scss
T
2019-06-01 23:50:20 +02:00

50 lines
596 B
SCSS

.table {
color: inherit;
thead {
th {
border-width: $table-border-width;
background: $min-black;
text-transform: uppercase;
font-size: $h6-font-size;
font-weight: 600;
}
}
th {
padding-top: .5rem;
padding-bottom: .5rem;
font-weight: 400;
color: $text-muted-light;
white-space: nowrap;
}
}
.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;
}
}