From 4aaca9e073bea2db3cd5830bf12d705366a16b26 Mon Sep 17 00:00:00 2001 From: danbulant Date: Fri, 7 Feb 2020 20:40:29 +0100 Subject: [PATCH] Move background getter --- client/src/ui/system/{ => utils}/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename client/src/ui/system/{ => utils}/background.js (69%) diff --git a/client/src/ui/system/background.js b/client/src/ui/system/utils/background.js similarity index 69% rename from client/src/ui/system/background.js rename to client/src/ui/system/utils/background.js index 32cad79..cd6e3cf 100644 --- a/client/src/ui/system/background.js +++ b/client/src/ui/system/utils/background.js @@ -1,6 +1,6 @@ function setBackground(){ - let bg = "https://picsum.photos/1280/720.webp"; + let bg = "https://picsum.photos/1366/768.webp"; document.body.style.background = "url('" + bg + "')"; }