12 lines
138 B
SCSS

@mixin flex {
display: flex;
align-items: center;
}
.table-data {
@include flex;
> span {
display: inline-block;
width: 50%;
}
}