Newer
Older
CrypticOreWallet / src / shared-components / list-view / ListTable.scss
@Drew Lemmy Drew Lemmy on 20 Sep 2020 379 bytes fix: table layout tweaks
@import "~scss/variables";

.list-view table {
  margin-bottom: 0;

  thead {
    border-bottom: 1px solid $border-color;
  }

  &.loading {
    // Fade out the skeleton screen when data is loading
    mask-image: linear-gradient(to bottom, black 50%, transparent);

    tbody {
      pointer-events: none;
    }
  }

  tbody {
    td {
      vertical-align: middle;
    }
  }
}