From aa33f3be94a35ce1dd62fefc8ffba1f442c28c7b Mon Sep 17 00:00:00 2001 From: RossAscends <124905043+RossAscends@users.noreply.github.com> Date: Sat, 25 Feb 2023 06:18:15 +0900 Subject: [PATCH] small CSS fix, reverting to default. line 62 and 74 : background URL from "taverna.png" (my change) to "tavern.png" (default). I had made the url changes as a test for functionality while altering BG behavior. Even if taverna.png is in the CSS, the BG swapping works properly. I think I did this because having it set to tavern.png in the initial CSS will remove whatever BG was chosen by the user in a previous session. Could be wrong about that. --- public/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/style.css b/public/style.css index 1816e2bd5..5bf5a566a 100644 --- a/public/style.css +++ b/public/style.css @@ -59,7 +59,7 @@ code { } #bg1{ - background: url(backgrounds/taverna.png); + background: url(backgrounds/tavern.png); background-size: auto 100%; background-repeat: no-repeat; background-attachment: fixed; @@ -71,7 +71,7 @@ code { z-index: -2; } #bg2{ - background: url(backgrounds/taverna.png); + background: url(backgrounds/tavern.png); background-size: auto 100%; background-repeat: no-repeat; background-attachment: fixed; @@ -2141,4 +2141,4 @@ body { background: transparent; -webkit-transition: width 0s ease; transition: width 0s ease; -} \ No newline at end of file +}