Browse Source

Merge tag 'v3.2.1' into staging

Owen Diffey 3 years ago
parent
commit
db7e35adfb

+ 1 - 1
frontend/src/components/ChristmasLights.vue

@@ -39,7 +39,7 @@ export default {
 	.christmas-lights {
 		position: absolute;
 		width: 100%;
-		height: 50px;
+		height: 64px;
 		left: 0;
 		top: 64px;
 		display: flex;

+ 4 - 0
frontend/src/components/layout/MainHeader.vue

@@ -358,4 +358,8 @@ export default {
 		}
 	}
 }
+
+.christmas-mode .nav {
+	border-radius: 0 !important;
+}
 </style>

+ 4 - 0
frontend/src/pages/Home.vue

@@ -889,6 +889,10 @@ export default {
 		&.loggedIn {
 			top: 20vh !important;
 		}
+
+		@media only screen and (max-width: 550px) {
+			top: 45vh !important;
+		}
 	}
 	.header {
 		&,

+ 5 - 7
frontend/src/pages/Station/index.vue

@@ -2906,19 +2906,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%;
-	animation: christmas 10s linear infinite;
+	background-size: 200% 200%;
+	animation: christmas 20s linear infinite;
 }
 
 @keyframes christmas {
 	100% {
-		background-position: 100% 100%;
+		background-position: 80% 100%;
 	}
 }