From e670f34e6e18f4ffc7c3257b67029d8e8b477970 Mon Sep 17 00:00:00 2001 From: ZiuChen <457353192@qq.com> Date: Mon, 5 Sep 2022 22:42:15 +0800 Subject: [PATCH] =?UTF-8?q?revert:=20=E7=A7=BB=E9=99=A4ClipMenu=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cpns/ClipMenu.vue | 24 -------------------- src/style/cpns/clip-menu.less | 42 ----------------------------------- 2 files changed, 66 deletions(-) delete mode 100644 src/cpns/ClipMenu.vue delete mode 100644 src/style/cpns/clip-menu.less diff --git a/src/cpns/ClipMenu.vue b/src/cpns/ClipMenu.vue deleted file mode 100644 index 195cc94..0000000 --- a/src/cpns/ClipMenu.vue +++ /dev/null @@ -1,24 +0,0 @@ - - - - - diff --git a/src/style/cpns/clip-menu.less b/src/style/cpns/clip-menu.less deleted file mode 100644 index 35f83d2..0000000 --- a/src/style/cpns/clip-menu.less +++ /dev/null @@ -1,42 +0,0 @@ -.clip-menu { - display: flex; - justify-content: center; - align-items: center; - flex-direction: column; - position: fixed; - z-index: 9999; - height: 100%; - width: 100%; - background-color: rgb(232, 232, 232); - &-title { - font-size: 18px; - font-weight: bold; - align-items: flex-start; - text-align: left; - } - &-config-list { - display: flex; - justify-content: center; - align-items: center; - // flex-direction: column; - &-item { - display: flex; - justify-content: center; - align-items: center; - .clip-btn { - display: flex; - justify-content: center; - align-items: center; - cursor: pointer; - width: 25px; - height: 25px; - border-radius: 5px; - margin: 5px; - background-color: @text-bg-color; - &:hover { - background-color: @primary-color; - } - } - } - } -}