BtnClose.vue 356 B

123456789101112131415161718
  1. <template>
  2. <button class="btn-close" />
  3. </template>
  4. <style lang="less" scoped>
  5. .btn-close{
  6. position: absolute;
  7. width: 72px;
  8. height: 72px;
  9. top: 40px;
  10. right: 40px;
  11. background-image: url(@/assets/images/icon_close.png);
  12. background-size: cover;
  13. background-repeat: no-repeat;
  14. background-position: center center;
  15. }
  16. </style>