From c5558ae0a6152b56b2b487b94f3c616648104edd Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 30 Oct 2024 18:10:32 +0800
Subject: [PATCH] 页面登录,请求拦截,响应拦截,持久化存储,路由拦截等处理

---
 src/styles/base/index.scss |   40 +++++++++++++++++++++++++++++++++++++++-
 1 files changed, 39 insertions(+), 1 deletions(-)

diff --git a/src/styles/base/index.scss b/src/styles/base/index.scss
index c4a215e..29aa729 100644
--- a/src/styles/base/index.scss
+++ b/src/styles/base/index.scss
@@ -1 +1,39 @@
-@use './container.scss'as *;
\ No newline at end of file
+@use './container.scss'as *;
+
+.public-map-popup {
+  position: absolute;
+  left: 0;
+  top: 0;
+  pointer-events: all;
+  display: block;
+  transform-origin: left bottom;
+  z-index: auto;
+
+  .marsBlueGradientPnl {
+    text-align: center;
+    padding: 5px 30px;
+    margin: 0;
+    color: #fff;
+    background: linear-gradient(rgb(7 10 203 / 75%), rgb(16 238 220));
+    -webkit-border-radius: 5px;
+    -moz-border-radius: 5px;
+    border-radius: 5px;
+    max-height: 130px;
+    -webkit-user-select: none;
+    -moz-user-select: none;
+    -ms-user-select: none;
+    user-select: none;
+    white-space: nowrap;
+
+    &::after {
+      content: "";
+      position: absolute;
+      bottom: -60px;
+      left: calc(50% - 3px);
+      display: block;
+      width: 3px;
+      height: 60px;
+      border-right: 3px solid #2bcdbb;
+    }
+  }
+}
\ No newline at end of file

--
Gitblit v1.9.3