_qr-screen.scss 688 B
Newer Older
.qr-wrapper {
  position: relative;
}

.qr-screen-wrapper {
  background: $chrome;
  top: 3rem;
  left: 0;
  right: 0;
  bottom: 3rem;
  height: auto;
  overflow: hidden;
  position: absolute;
  z-index: 4000; /* Above menu popup */
}

.qr-screen {
  align-items: center;
Luke Schoen's avatar
Luke Schoen committed
  display: flex;
  justify-content: center;
Luke Schoen's avatar
Luke Schoen committed
  margin-top: 3.4rem;
}

.qr-screen-content {
  width: 80%;

  .qr-screen_image {
    align-items: center;
Luke Schoen's avatar
Luke Schoen committed
    display: flex;
    justify-content: center;
Luke Schoen's avatar
Luke Schoen committed

    img {
      display: block;
      height: auto;
Luke Schoen's avatar
Luke Schoen committed
      width: 19rem;
    }
  }

  .qr-screen_address {
    margin-top: 1rem;
Luke Schoen's avatar
Luke Schoen committed

    p {
      color: $grey;
      text-align: center;
    }
  }
Luke Schoen's avatar
Luke Schoen committed
}