浏览代码

fix: attempted to fix candycane pole animation

Kristian Vos 3 年之前
父节点
当前提交
7ae1107f11
共有 1 个文件被更改,包括 4 次插入6 次删除
  1. 4 6
      frontend/src/pages/Station/index.vue

+ 4 - 6
frontend/src/pages/Station/index.vue

@@ -2859,19 +2859,17 @@ export default {
 .christmas-seeker {
 	background: repeating-linear-gradient(
 		-45deg,
-		var(--white),
-		var(--white) 1rem,
-		var(--dark-red) 1rem,
-		var(--dark-red) 2rem
+		var(--white) 0 1rem,
+		var(--dark-red) 1rem 2rem
 	);
 
-	background-size: 150% 200%;
+	background-size: 200% 200%;
 	animation: christmas 10s linear infinite;
 }
 
 @keyframes christmas {
 	100% {
-		background-position: 100% 100%;
+		background-position: 80% 100%;
 	}
 }