Newer
Older
CrypticOreWallet / src / shared-components / list-view / ListTable.scss
@Drew Lemmy Drew Lemmy on 17 Sep 2020 272 bytes feat: list table skeleton screen
@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);
  }
}