20 lines
526 B
SCSS
20 lines
526 B
SCSS
.basic-table {
|
|
@include table-flex(stretch, center, flex, column, wrap, flex-start);
|
|
width: 100%;
|
|
.row {
|
|
@include table-flex(stretch, center, flex, row, nowrap, flex-start);
|
|
border-bottom: 1px solid $gray-light;
|
|
padding: .5rem 0;
|
|
text-align: left;
|
|
width: 100%;
|
|
@for $i from 1 through 8 {
|
|
.width-#{$i} {
|
|
@include table-flex-child($i, 50px, 0);
|
|
}
|
|
}
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
}
|