aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/selected-account/index.scss
blob: 5339a228b03d2768f3ae4d346b6544d08506c3d5 (plain) (tree)





































                                
.selected-account {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;

  &__name {
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
  }

  &__address {
    font-size: .75rem;
    color: $silver-chalice;
  }

  &__clickable {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;

    &:hover {
      background-color: #e8e6e8;
    }

    &:active {
      background-color: #d9d7da;
    }
  }
}