vue-image-crop-upload icon indicating copy to clipboard operation
vue-image-crop-upload copied to clipboard

request support mobile view

Open moradi-morteza opened this issue 3 years ago • 1 comments
trafficstars

hi, is there any update for support mobile view? its good in desktop but not good for mobile

moradi-morteza avatar Apr 24 '22 08:04 moradi-morteza

Incase anyone want to overwrite css for mobile responsive, here is my sass code

.vicp-img{
  max-width:unset !important;
}

@media (max-width: 640px) {
  .vicp-wrap {
    width: 100% !important;
    max-width: 400px;
    height: auto !important;
    max-height: 450px;
    border-radius: 5px !important;
  }

  .vicp-step2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .vicp-crop {
    margin-left: auto;
    margin-right: auto;
  }

  .vicp-crop-left {
    display: block !important;
    float: none !important;
  }

  .vicp-crop-right {
    display: block !important;
    float: none !important;
  }

  .vicp-preview {
    height: auto !important;
    display: flex;
    justify-content: center;
  }

  .vicp-preview-item {
    display: inline-block;
  }

  .vicp-close {
    right: 5px !important;
  }
}

SyahmiNawi avatar Dec 02 '22 07:12 SyahmiNawi