12345678910111213141516171819 |
- .filter-container {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- &-lt {
- display: flex;
- margin-right: 20px;
- .filter-item {
- margin-right: 10px;
- }
- }
- &-rt {
- display: flex;
- }
- }
- .table-container {
- width: 100%;
- overflow-x: auto;
- }
|