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

@@ -61,10 +61,7 @@ const App: React.FC = () => {
<Box
sx={{
minHeight: '100vh',
backgroundImage: 'url(https://www.rydertech.us/backgrounds/space1.jpg)',
backgroundSize: 'cover',
backgroundPosition: 'center',
backgroundAttachment: 'fixed',
backgroundColor: 'rgb(25, 28, 34)',
}}
>
<Container maxWidth="lg" sx={{ py: 4 }}>

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',
}}
>

View File

@@ -142,12 +142,12 @@ const EventView: 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',
}}
>

View File

@@ -229,12 +229,12 @@ const RSVPForm: 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',
}}
>
@@ -281,12 +281,12 @@ const RSVPForm: 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',
}}
>