send-button.vue 441 字节
Newer Older
6
628c9f991a7e4862742d8a2f 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<template>
  <div class="icon">
      <img src="../assets/Send.svg" />
  </div>
</template>

<style lang="less">
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 26px;
    height: 26px;
    & > img {
        width: 18px;
        height: 18px;
        color: #acacbe;
        width: 100%;
    }
}
.icon:hover {
    background: rgba(0,0,0,.6);
    border-radius: 6px;
}
</style>