_account.scss 878 B
Newer Older
.account {
  display: flex;

  &.-header {
    .account_address {
      font-size: 0.7rem;
  .account_avatar {
    width: (ms(0) * 1.3) + 1rem;
    height: (ms(0) * 1.3) + 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    canvas {
      display: block;
      height: (ms(0) * 1.3) + 1rem !important;
      width: auto !important;
    }
  }

  .account_information {
    padding-left: 0.325rem;
Brian Flanagan's avatar
Brian Flanagan committed
    overflow: hidden;
    flex-grow: 1;
  }

  .account_change_blockies {
    align-items: center;
    display: flex;
    padding-left: 1rem;
  }

  .account_name {
    color: $black;
    font-weight: 500;
    margin-bottom: 0.1rem;
  }

  .account_address {
    font-family: $mono;
    color: $grey;
    font-size: ms(-2);
    line-height: ms(-2) * 1.3;
  }
}