table.less 453 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.party-table{
  height: calc(100% - 160px);  
  .el-table__header-wrapper{
      border-radius: 8px 8px 0 0 ;
        .el-table__header{
            tr,th{
                background-color: @party-red;
                color: @party-table-header-color;
                font-size: 16px;
            }
        }
    }
    .el-table__body{
        tr{
            &:nth-child(even){
                background-color: #FDFBF8;
            }
        }
    }
}