Skip to content

Commit

Permalink
fix: paragraph margins too far apart on download page
Browse files Browse the repository at this point in the history
  • Loading branch information
blackxfiied committed Oct 24, 2024
1 parent 73425af commit 8e66211
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/download.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { features } from "./index.astro";
<h1 class="mythic-gradient-text">Thanks for downloading Mythic!</h1>
<p>You're just a few seconds away from greatness... (<span id="countdown-timer">3</span>)</p>
<p>If your download hasn't started, please <a href="#" onclick="fetchLatestRelease()">click here</a>.</p>

<p>Please note that for newer versions of macOS, you may need to toggle the 'Allow apps from' setting in System Settings &gt; Privacy & Security &gt; Security to 'Anywhere'.</p>
<p>For any concerns, please consult the <a href="/faq">FAQ</a> or join the <a href="/discord">Discord</a>.</p>

Expand Down Expand Up @@ -109,6 +108,12 @@ import { features } from "./index.astro";
animation: move-bg 40s infinite ease-in-out;
margin-bottom: 0;
}

p {
margin: 0;
padding: 0;
margin-bottom: 10px;
}
</style>

<script>
Expand Down

0 comments on commit 8e66211

Please sign in to comment.