Fixed Mobile CheckBox

This commit is contained in:
PrestonT500 2024-09-22 19:25:11 -07:00
parent b796759171
commit 69678c3c98
3 changed files with 24 additions and 6 deletions

View File

@ -16,6 +16,13 @@ body {
justify-content: center; justify-content: center;
margin: 0 auto; margin: 0 auto;
} }
.mobileContainer19 {
display: flex;
width: 1%;
flex-wrap:wrap;
justify-content: center;
margin: 0 auto;
}
.Container18{ .Container18{
display: flex; display: flex;
width: 1%; width: 1%;
@ -23,6 +30,13 @@ body {
justify-content: center; justify-content: center;
margin: 0 auto; margin: 0 auto;
} }
.Container19{
display: flex;
width: 1%;
flex-wrap:wrap;
justify-content: center;
margin: 0 auto;
}
.Container15{ .Container15{
display: flex; display: flex;
width: 1%; width: 1%;

View File

@ -31,18 +31,18 @@
</div> </div>
<!-- Version 1.9 Section --> <!-- Version 1.9 Section -->
<div id="desktopVersion18"> <div id="desktopVersion19">
<p class="version-text">Version 1.9</p> <p class="version-text">Version 1.9</p>
<div class="Container18"> <div class="Container19">
<a class="version-link filter-button" href="./eagler-files/1.9/EaglercraftL_1.9.html"><button>Main 1.9 Client</button></a> <a class="version-link filter-button" href="./eagler-files/1.9/EaglercraftL_1.9.html"><button>Main 1.9 Client</button></a>
</div> </div>
</div> </div>
<div id="mobileVersion18" style="display: none;"> <div id="mobileVersion19" style="display: none;">
<p class="version-text">Version 1.9 - Mobile</p> <p class="version-text">Version 1.9 - Mobile</p>
<div class="mobileContainer19"></div>
<a class="version-link filter-button mobile18" href="./eagler-files/mobile/1.9/EaglerMobile/EaglercraftL_1.9.html"><button>EaglerMobile 1.8</button></a> <a class="version-link filter-button mobile18" href="./eagler-files/mobile/1.9/EaglerMobile/EaglercraftL_1.9.html"><button>EaglerMobile 1.8</button></a>
<a class="version-link filter-button mobile18" href="./eagler-files/mobile/1.9/EaglerPocketMobile/EaglercraftL_1.9.html"><button>EaglerPocketMobile 1.8</button></a> <a class="version-link filter-button mobile18" href="./eagler-files/mobile/1.9/EaglerPocketMobile/EaglercraftL_1.9.html"><button>EaglerPocketMobile 1.8</button></a>
<div class="mobileContainer18">
</div> </div>
</div> </div>

View File

@ -6,11 +6,15 @@ $(document).ready(function() {
$("#mobileVersion18").show(); $("#mobileVersion18").show();
$("#desktopVersion152").hide(); $("#desktopVersion152").hide();
$("#mobileVersion152").show(); $("#mobileVersion152").show();
$("#desktopVersion19").hide();
$("#mobileVersion19").show();
} else { } else {
$("#desktopVersion18").show(); $("#desktopVersion18").show();
$("#mobileVersion18").hide(); $("#mobileVersion18").hide();
$("#desktopVersion152").show(); $("#desktopVersion152").show();
$("#mobileVersion152").hide(); $("#mobileVersion152").hide();
$("#desktopVersion19").show();
$("#mobileVersion19").hide();
} }
} }