1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-18 03:21:41 +04:00
Files
tabler/scss/ui/_tables.scss
T
2019-05-13 21:35:18 +02:00

41 lines
516 B
SCSS

.table {
thead {
th {
border-width: $table-border-width;
background: $gray-100;
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-md {
th,
td {
padding: .5rem;
}
}
.table-vcenter {
td,
th {
vertical-align: middle;
}
}
.table-center {
td,
th {
text-align: center;
}
}