diff --git a/index.html b/index.html index 961a82eb..194d4ae6 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,12 @@ me-admin + @@ -17,6 +23,7 @@ display: flex; justify-content: space-between; } + .sk-flow-dot { width: 25%; height: 25%; @@ -24,18 +31,22 @@ border-radius: 50%; animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both; } + .sk-flow-dot:nth-child(1) { animation-delay: -0.3s; } + .sk-flow-dot:nth-child(2) { animation-delay: -0.15s; } + @keyframes sk-flow { 0%, 80%, 100% { transform: scale(0.3); } + 40% { transform: scale(1); } diff --git a/src/styles/index.scss b/src/styles/index.scss index 36ed4460..6792ee34 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -3,8 +3,6 @@ html { body { - margin: 0; - padding: 0; color: var(--el-text-color-primary); #app {