Replace default space wallpaper with solid color background - Changed to rgb(25, 28, 34)

This commit is contained in:
Starstrike
2025-05-01 15:59:58 -04:00
parent 35c508dab0
commit b2c7cd49e9
4 changed files with 9 additions and 12 deletions

View File

@@ -460,12 +460,12 @@ const EventAdmin: React.FC = () => {
left: 0,
right: 0,
bottom: 0,
backgroundImage: event?.wallpaper ? `linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(${event.wallpaper})` : 'url(https://www.rydertech.us/backgrounds/space1.jpg)',
backgroundImage: event?.wallpaper ? `linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(${event.wallpaper})` : 'none',
backgroundSize: 'cover',
backgroundPosition: 'center',
backgroundRepeat: 'no-repeat',
backgroundAttachment: 'fixed',
backgroundColor: '#000',
backgroundColor: event?.wallpaper ? '#000' : 'rgb(25, 28, 34)',
overflowY: 'auto',
}}
>