Skip to content

Commit

Permalink
Fixes to the new fold
Browse files Browse the repository at this point in the history
... I might be testing in production. Maybe.
  • Loading branch information
maddie480 authored Nov 6, 2024
1 parent cc1b415 commit 7bce47f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ <h3 id="olympus">Olympus - Cross-platform Everest Installer</h3>
<ul id="mac-instructions-fold">
<li>
Running Olympus will probably result in this error showing up. Close it by clicking "Done".
<img src="/images/olympus-run-macos-1.png" class="halfwidth">
<div><img src="/images/olympus-run-macos-1.png" class="halfwidth"></div>
</li>
<li>
Then, open the Settings app, select "Privacy & Security" and scroll down until you see a notice about Olympus. Open it anyway!
<img src="/images/olympus-run-macos-2.png">
<div><img src="/images/olympus-run-macos-2.png"></div>
</li>
<li>
Go through this final warning by clicking "Open Anyway" again. You might need to type your password to finish the process.
<img src="/images/olympus-run-macos-3.png" class="halfwidth">
<div><img src="/images/olympus-run-macos-3.png" class="halfwidth"></div>
</li>
</ul>
</li>
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@
// unfold
icon.innerText = "-";
fold.style.display = "block";
folded = true;
folded = false;
} else {
// fold
icon.innerText = "+";
fold.style.display = "none";
folded = false;
folded = true;
}
};

Expand Down
5 changes: 3 additions & 2 deletions main/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,11 @@ a.button:hover, a.button:focus, a.button:active {
max-width: calc(100vw - 64px);
}

#mac-instructions-fold div {
text-align: center;
}
#mac-instructions-fold img {
display: block;
max-width: 100%;
text-align: center;
}
#mac-instructions-fold img.halfwidth {
max-width: 50%;
Expand Down

0 comments on commit 7bce47f

Please sign in to comment.