1234567891011121314151617181920212223242526272829 |
- @import '../../app.less';
- .table {
- .td,
- .th {
- display: inline-block;
- vertical-align: middle;
- }
- .tr {
- border-bottom: 1px solid @line_color;
- .th {
- height: 44px;
- line-height: 44px;
- }
- }
- .tr:last-child {
- border-bottom: none;
- }
- .empty {
- height: 100px;
- line-height: 100px;
- text-align: center;
- }
- }
|