Donation dependent style

This commit is contained in:
Daniel Brendel 2024-04-03 15:30:32 +02:00
parent 3ce1b5c1c0
commit 8c184046b4
3 changed files with 13 additions and 5 deletions

View File

@ -455,6 +455,14 @@ tbody strong {
padding-top: 45px;
}
.background-get-started {
background-color: rgb(35, 55, 79);
@media screen and (min-width: 768px) {
border-radius: 10px;
}
margin-bottom: 30px;
}
.button-get-started {
margin-top: 50px;
margin-bottom: 50px;

View File

@ -146,17 +146,17 @@ let widget = new SteamApp('#app-widget', {
</div>
@endif
<div><hr/></div>
@if (!env('APP_ENABLEDONATION'))
<div><hr/></div>
@endif
<div class="content-section is-centered">
<div class="content-section is-centered {{ (env('APP_ENABLEDONATION')) ? 'background-get-started' : '' }}">
<div class="is-sidepadding button-get-started fade fade-out">
<a href="{{ url('/documentation') }}">Get Started!</a>
</div>
</div>
@if (env('APP_ENABLEDONATION'))
<div><hr/></div>
<div class="content-section is-centered">
<div class="is-sidepadding fade fade-out">
<h3>Your support is greatly appreciated</h3>

2
public/js/app.js vendored

File diff suppressed because one or more lines are too long