Newer
Older
CrypticOreWallet / src / shared-components / list-view / ColumnHeader.scss
@import "~scss/variables";

.list-view table thead {
  user-select: none;

  .column-sort {
    margin-left: 0.25rem;
    cursor: pointer;
  
    &-asc, &-desc {
      color: $body-color;
    }
  
    &-none {
      color: rgba($text-muted, 0.75);
  
      &:hover {
        color: $body-hover-color;
      }
    }
  }
}