From 988f9735377909b6310301e582c15804e004783f Mon Sep 17 00:00:00 2001
From: 19626 <1962676589@qq.com>
Date: 星期六, 07 十月 2023 10:36:13 +0800
Subject: [PATCH] 近期修改cjw

---
 force-app/main/default/staticresources/blockUIcss.css |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/force-app/main/default/staticresources/blockUIcss.css b/force-app/main/default/staticresources/blockUIcss.css
index 5f6c572..149e83e 100644
--- a/force-app/main/default/staticresources/blockUIcss.css
+++ b/force-app/main/default/staticresources/blockUIcss.css
@@ -26,4 +26,19 @@
 	top:0px;
 	z-index:100;
 	background-color:#000000;
+}
+
+.spinner {
+	border: 4px solid rgba(0, 0, 0, 0.1);
+	border-top: 4px solid #3498db;
+	border-radius: 50%;
+	width: 40px;
+	height: 40px;
+	animation: spin 2s linear infinite;
+	margin: 0 auto;
+}
+
+@keyframes spin {
+	0% { transform: rotate(0deg); }
+	100% { transform: rotate(360deg); }
 }
\ No newline at end of file

--
Gitblit v1.9.1