Skip to content
Snippets Groups Projects
metadata-table.component.scss 583 B
Newer Older
.audit-table {
  width: 100%;
  background-color: transparent;

  .mat-header-row {
    box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.25);
    background-color: #fafafa;
  }

  .mat-header-cell {
    width: 200px;
  }

  .mat-header-cell:first-child {
    width: 50px;
  }

  th {
    font-size: 1rem;
    font-weight: 300;
  }

  tr:not(.mat-header-row) td {
    padding: 15px 10px;

    &:first-child {
      padding-left: 20px;
    }

    &:last-child {
      padding-right: 20px;
    }
  }

  .mat-column-download {
    button {
      padding: 0;
      width: auto;
    }
  }
}