From f8588bb246bcd195ed080455c340fce4886abc6e Mon Sep 17 00:00:00 2001
From: liugq <liugq5713@gmail.com>
Date: Fri, 17 May 2019 15:24:29 +0800
Subject: [PATCH] style( rightPanel ): tidy css

---
 src/components/RightPanel/index.vue | 37 ++++++++++++-----------------
 1 file changed, 15 insertions(+), 22 deletions(-)

diff --git a/src/components/RightPanel/index.vue b/src/components/RightPanel/index.vue
index 63408d8b..55e8c1e5 100644
--- a/src/components/RightPanel/index.vue
+++ b/src/components/RightPanel/index.vue
@@ -86,32 +86,27 @@ export default {
 
 <style lang="scss" scoped>
 .rightPanel-background {
+  position: fixed;
+  top: 0;
+  left: 0;
   opacity: 0;
   transition: opacity .3s cubic-bezier(.7, .3, .1, 1);
   background: rgba(0, 0, 0, .2);
-  width: 0;
-  height: 0;
-  top: 0;
-  left: 0;
-  position: fixed;
   z-index: -1;
 }
 
 .rightPanel {
-  background: #fff;
-  z-index: 3000;
-  position: fixed;
-  height: 100vh;
   width: 100%;
   max-width: 260px;
-  top: 0px;
-  left: 0px;
+  height: 100vh;
+  position: fixed;
+  top: 0;
+  right: 0;
   box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .05);
   transition: all .25s cubic-bezier(.7, .3, .1, 1);
   transform: translate(100%);
+  background: #fff;
   z-index: 40000;
-  left: auto;
-  right: 0px;
 }
 
 .show {
@@ -130,20 +125,18 @@ export default {
 }
 
 .handle-button {
-  position: absolute;
-  left: -48px;
-  border-radius: 6px 0 0 6px !important;
   width: 48px;
   height: 48px;
-  pointer-events: auto;
-  z-index: 0;
-  cursor: pointer;
-  pointer-events: auto;
-  font-size: 24px;
+  position: absolute;
+  left: -48px;
   text-align: center;
+  font-size: 24px;
+  border-radius: 6px 0 0 6px !important;
+  z-index: 0;
+  pointer-events: auto;
+  cursor: pointer;
   color: #fff;
   line-height: 48px;
-
   i {
     font-size: 24px;
     line-height: 48px;