123
chenjingwu
2024-04-25 aebb2c4ece794a9fe486328c042e3dcd33f0ccd5
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); }
}