Skip to content

Commit

Permalink
Merge pull request #147 from usegalaxy-au/dev
Browse files Browse the repository at this point in the history
Fix "What is this page" position
  • Loading branch information
neoformit authored Aug 15, 2024
2 parents 85bb65d + 6d1bb49 commit af90d1f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 10 deletions.
21 changes: 21 additions & 0 deletions webapp/home/labs/proteomics/static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#whatIsThisPage {
position: absolute;
top: 135px;
right: calc(50vw - 500px);
}

@media (max-width: 1070px) {
#whatIsThisPage {
right: 2rem;
}
}
@media (max-width: 992px) {
#whatIsThisPage {
top: 95px;
}
}
@media (max-width: 730px) {
#whatIsThisPage {
top: 2rem;
}
}
19 changes: 9 additions & 10 deletions webapp/home/labs/proteomics/templates/intro.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
<section class="my-5" id="tagline">
<a
href="#"
id="whatIsThisPage"
data-bs-toggle="modal"
data-bs-target="#infoModal"
>
What is this page?
</a>
<p>
Welcome to the Galaxy Australia Proteomics Lab. Get quick access to the
tools, workflows and tutorials you need to get started with proteomics on
Galaxy.
<br>
<a
href="#"
data-bs-toggle="modal"
data-bs-target="#infoModal"
style="position: absolute; top: 135px; right: calc(50vw - 500px);"
>
What is this page?
</a>
</p>

<p>
This page is currently under development in consultation with the
<a href="https://www.biocommons.org.au/proteomics-community" target="_blank">
Australian Proteomics Bioinformatics community</a>.
</p>
</p>
</section>

<hr>
Expand Down

0 comments on commit af90d1f

Please sign in to comment.