Blame view

src/styles/tablecss.scss 517 Bytes
1 2 3 4 5
.tableDivCss {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  padding: 5px;
1  
jiaozeping@pashanhoo.com committed
6
  overflow-y: scroll;
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
}

.tableCss {
  width: 100%;
  background: #fff;
  text-align: center;
  border-collapse: collapse;
  color: #333;

  th {
    border: 1px solid #e8e8e8;
    line-height: 42px;
    padding: 0 4px;
    font-size: 14px;
  }

  td {
    border: 1px solid #e8e8e8;
    line-height: 42px;
    padding: 0 4px;
    font-size: 14px;
  }

  .title {
    line-height: 68px;
    font-size: 22px !important;
  }


}