Newer
Older
CrypticOreWallet / src / pages / addresses / AddressPage.less
@Drew Lemmy Drew Lemmy on 1 Mar 2021 925 bytes fix: minor responsive tweak on address page
// Copyright (c) 2020-2021 Drew Lemmy
// This file is part of KristWeb 2 under GPL-3.0.
// Full details: https://github.com/tmpim/KristWeb2/blob/master/LICENSE.txt
@import (reference) "../../App.less";

.address-page {
  .top-address-row {
    display: flex;
    align-items: center;

    h1.address {
      display: inline-block;
      margin-right: @margin-lg;
      margin-bottom: 0;

      font-size: @font-size-base * 2;
    }

    .ant-btn {
      margin-right: @margin-md;
      &:last-child { margin-right: 0; }
    }
  }

  .address-info-row {
    max-width: 768px;
    margin-bottom: @margin-lg;

    .kw-statistic {
      margin-top: @margin-lg;
    }
  }

  .address-card-names {
    .address-name-item {
      display: block;

      .name-registered {
        color: @text-color-secondary;
        font-size: 90%;

        @media (max-width: @screen-xl) {
          font-size: 85%;
        }
      }
    }
  }
}