react-toolbox/components/table/style.scss

26 lines
442 B
SCSS

@import "../base";
@import "./config";
.root {
width: 100%;
font-size: $font-size-tiny;
color: $table-text-color;
text-align: left;
tr {
height: $table-row-height;
line-height: $table-row-height;
border-bottom: $table-row-divider;
}
th {
font-weight: $font-weight-bold;
&:first-letter {
text-transform: capitalize;
}
}
th, td {
position: relative;
padding: 0 $table-row-offset;
}
}