Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

Permalink
try fix: scroll margin
Browse files Browse the repository at this point in the history
  • Loading branch information
SvMak authored and marc0der committed Apr 25, 2024
1 parent f8caf66 commit 0c49585
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/jdks.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1 id="availablejdks">JDK Distributions</h1>

<ul class="list-unstyled">
@for(jdk <- jdks) {
<li id='@jdk.id'>
<li id='@jdk.id' class="scroll-offset">
<h4><a href='@jdk.url' target='_blank'>@jdk.distribution</a> (@jdk.vendor)</h4>
<p>@jdk.description</p>
<code>$ sdk install java [email protected]</code>
Expand Down
2 changes: 1 addition & 1 deletion app/views/sdks.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1 id="availablesdks"></a>SDK Installation Candidates</h1>
@includes.advertisement()
<ul class="list-none pl-0">
@for(c <- candidates) {
<li id='@c.candidate'>
<li id='@c.candidate' class="scroll-offset">
<h4>@c.name (@c.default.getOrElse("Coming soon!"))</h4>
<a href='@c.websiteUrl' target='_blank'>@c.websiteUrl</a></br>
<p>@c.description</p>
Expand Down

0 comments on commit 0c49585

Please sign in to comment.