From 3ad1d6b6019c12e07100aa349af3b721477e70df Mon Sep 17 00:00:00 2001 From: yunfachi Date: Wed, 20 Dec 2023 15:08:23 +0000 Subject: [PATCH] fix(funbox): missing background image and extra scrolling in space balls (yunfachi) (#4872) * fix: update background image in space_balls (yunfachi) * fix: hide the scrollbar caused by page rotation in space_balls (yunfachi) --- frontend/static/funbox/space_balls.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/frontend/static/funbox/space_balls.css b/frontend/static/funbox/space_balls.css index 74cba2615..c45f40e80 100644 --- a/frontend/static/funbox/space_balls.css +++ b/frontend/static/funbox/space_balls.css @@ -11,15 +11,16 @@ } body { - background-image: url("https://thumbs.gfycat.com/SlimyClassicAsianconstablebutterfly-size_restricted.gif"); + background-image: url("https://media0.giphy.com/media/5VD0q2EDp2gvNQVCIN/giphy.gif"); background-size: cover; background-position: center; } main { - transform: rotateX(35deg); + perspective: 500px; + overflow: hidden; } -#contentWrapper { - perspective: 500px; +main .page { + transform: rotateX(35deg); }