Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Make the home page icon a nice size #27

Merged
merged 1 commit into from
Sep 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions server/static/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.container {
max-width: 1000px; }
.header {
margin-top: 6rem;
margin-top: 2.5vw;
text-align: center; }
.heading-font-size {
font-size: 1.2rem;
Expand Down Expand Up @@ -58,7 +58,7 @@ tbody {
/* Larger than phone */
@media (min-width: 550px) {
.header {
margin-top: 10rem; }
margin-top: 4vw; }
.value-props {
margin-top: 9rem;
margin-bottom: 7rem; }
Expand Down
2 changes: 1 addition & 1 deletion server/web_templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ var indexTemplate = template.Must(template.New("index.html.tmpl").Parse(`
<body>
<div class="container">
<section class="header">
<a title="atlantis" href="{{ .CleanedBasePath }}/"><img src="{{ .CleanedBasePath }}/static/images/atlantis-icon.png"/></a>
<a title="atlantis" href="{{ .CleanedBasePath }}/"><img src="{{ .CleanedBasePath }}/static/images/atlantis-icon_512.png" height="15vw" width="auto" max-height="240px"/></a>
<p class="title-heading">atlantis</p>
<p class="js-discard-success"><strong>Plan discarded and unlocked!</strong></p>
</section>
Expand Down