.share-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px 0;
    border-radius: 8px 8px 0 0 ;
    background: #fff;
    z-index: 999;
    font-size: 12px;
    font-feature-settings: "palt";

    @media only screen and (min-width:600px) {
      max-width: 600px;
      left: 50%;
      transform: translateX(-50%);
      bottom: 10px;
      border-radius: 8px;
      border-top: 1px solid #eee;
    }
}

.share-dialog p {
  font-size: 10px;
  letter-spacing: 0;
}

.share-dialog img {
  border-radius: 50%;
}

.share-dialog .close {
  position: absolute;
  top: 10px;
  right: 0;
}

.share-dialog .v-btn:not(.v-btn--round).v-size--default {
  min-width: auto;
}