diff --git a/src/renderer/src/views/profile/cropperImage.vue b/src/renderer/src/views/profile/cropperImage.vue index f75630d..3c86df0 100644 --- a/src/renderer/src/views/profile/cropperImage.vue +++ b/src/renderer/src/views/profile/cropperImage.vue @@ -22,13 +22,11 @@
- 选择 - + + + 取消 提交 @@ -216,6 +214,7 @@ export default { position: relative; display: flex; margin-top: 30px; + cursor: pointer; > .upload { display: block; width: 60px; @@ -224,6 +223,7 @@ export default { top: 0; left: 0; opacity: 0; + cursor: pointer; } } } @@ -265,4 +265,22 @@ export default { background-color: rgba(43, 43, 43, 0.7215686275); } } +.lBut{ + width: 87px; + height: 32px; + font-size: 14px; + line-height: 1.15; + display: flex; + justify-content: center; + align-items: center; + border-radius: 4px; + padding: 8px 10px; + margin-right: 10px; + transition: all 0.5s; + white-space: nowrap; + background-color: #409eff; + color: white; + border: 1px solid #409eff; + cursor: pointer; +}