diff --git a/src/assets/img/chat.png b/src/assets/img/chat.png index 05826b3c6..284cc7c76 100644 Binary files a/src/assets/img/chat.png and b/src/assets/img/chat.png differ diff --git a/src/components/Apps/DrawerPanel/index.vue b/src/components/Apps/DrawerPanel/index.vue index 512311e89..9b766ac21 100644 --- a/src/components/Apps/DrawerPanel/index.vue +++ b/src/components/Apps/DrawerPanel/index.vue @@ -141,7 +141,6 @@ export default { min-width: 260px; height: 100vh; user-select: none; - border-radius: 20px 0 0 20px; transition: transform .25s cubic-bezier(.7, .3, .1, 1); box-shadow: 0 0 8px 4px #00000014; transform: translate(100%); @@ -190,6 +189,7 @@ export default { background-color: #FFFFFF; box-shadow: 0 0 8px 4px #00000014; cursor: pointer; + &:hover { left: -52px !important; width: 52px !important; diff --git a/src/styles/index.scss b/src/styles/index.scss index 5b4bac42c..6a9cfef02 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -308,3 +308,7 @@ input[type=file] { font-size: 13px; font-weight: 400; } + +.el-drawer__container.el-drawer__open, .drawer-panel { + border-radius: 10px 0 0 10px; +}