From bd6960449d13f97d4956ce086c73d2fd6a10ce5e Mon Sep 17 00:00:00 2001 From: J-Ha <5481259+jhaaaa@users.noreply.github.com> Date: Wed, 11 Sep 2024 09:29:09 -0700 Subject: [PATCH] first pass (#790) --- src/css/tailwind.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/css/tailwind.css b/src/css/tailwind.css index f5896c56..0ac84e7a 100644 --- a/src/css/tailwind.css +++ b/src/css/tailwind.css @@ -191,14 +191,16 @@ } .builder-bg { - background-image: urL("/img/bwx-bg-light.png"); - background-size: cover; + background-image: url("/img/bwx-bg-light.png"); + background-size: auto 100%; + background-position: center; background-repeat: no-repeat; } [data-theme="dark"] .builder-bg { - background-image: urL("/img/bwx-bg-dark.png"); - background-size: contain; + background-image: url("/img/bwx-bg-dark.png"); + background-size: auto 100%; + background-position: center; background-repeat: no-repeat; }