update splash screen

This commit is contained in:
SrGooglo 2022-12-30 15:10:10 +00:00
parent 5cae13773a
commit b71cf2e520
2 changed files with 33 additions and 0 deletions

View File

@ -309,6 +309,9 @@ class App extends React.Component {
<div className="splash_label">
<Icons.LoadingOutlined />
</div>
<div className="splash_footer">
<img src={config.logo.ragestudio_full} />
</div>
</div>
}
}

View File

@ -272,6 +272,36 @@ html {
margin: 0 !important;
}
}
.splash_footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: fit-content;
height: 300px;
img {
height: 40px;
margin-bottom: 10px;
}
h4 {
font-family: "Space Grotesk", sans-serif;
font-size: 0.8rem;
font-weight: 400;
}
}
}
@media (max-width: 768px) {