mirror of
https://github.com/tabler/tabler.git
synced 2026-07-18 03:21:41 +04:00
41 lines
516 B
SCSS
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;
|
|
}
|
|
}
|