Skip to content

Commit

Permalink
Fixed header image display
Browse files Browse the repository at this point in the history
Now supporting displays down to 260px width
  • Loading branch information
iJaack committed Feb 26, 2024
1 parent 64b3d96 commit c9a0029
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
14 changes: 7 additions & 7 deletions _sass/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ a:hover {
}
@media only screen and (max-device-width: 1700px) {
* {
font-size: $mobile-font-size !important;
}
font-size: $mobile-font-size !important;
}
}

/**
Expand All @@ -54,8 +54,8 @@ a:hover {
.container {
width: $container-width;
max-width: $container-max-width;
margin-right: auto;
margin-left: auto;
margin-right: auto;
margin-left: auto;
}
p {
word-wrap: break-word;
Expand All @@ -79,10 +79,10 @@ footer {
}

.header-image {
width: 400px;
height: 100px;
width: 20rem;
height: auto;
display: block;
margin-left: -25px;
margin-left: -15px;
}

.inline-image img {
Expand Down
6 changes: 3 additions & 3 deletions _site/assets/main-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ footer {
margin-bottom: 20px; }

.header-image {
width: 400px;
height: 100px;
width: 20rem;
height: auto;
display: block;
margin-left: -25px; }
margin-left: -15px; }

.inline-image img {
width: 100%;
Expand Down
6 changes: 3 additions & 3 deletions _site/assets/main-hacker.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ footer {
margin-bottom: 20px; }

.header-image {
width: 400px;
height: 100px;
width: 20rem;
height: auto;
display: block;
margin-left: -25px; }
margin-left: -15px; }

.inline-image img {
width: 100%;
Expand Down
6 changes: 3 additions & 3 deletions _site/assets/main-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ footer {
margin-bottom: 20px; }

.header-image {
width: 400px;
height: 100px;
width: 20rem;
height: auto;
display: block;
margin-left: -25px; }
margin-left: -15px; }

.inline-image img {
width: 100%;
Expand Down
6 changes: 3 additions & 3 deletions _site/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ footer {
margin-bottom: 20px; }

.header-image {
width: 400px;
height: 100px;
width: 20rem;
height: auto;
display: block;
margin-left: -25px; }
margin-left: -15px; }

.inline-image img {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion _site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</div>
</header>
<main>
<p><img src="/assets/logos/verifier-alliance.svg" alt="verifier-alliance_icon" class="header-image" /></p>
<p><img src="/assets/logos/verifier-alliance.png" alt="verifier-alliance_icon" class="header-image" /></p>

<p>The Verifier Alliance is an ecosystem collective aiming for easy, unified, and open access to the source-code of EVM smart contracts.</p>

Expand Down
Binary file added assets/logos/verifier-alliance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ description: Ecosystem collective aiming for easy, unified, and open access to t
permalink: /
---

![verifier-alliance_icon]({{base}}/assets/logos/verifier-alliance.svg){: .header-image}
![verifier-alliance_icon]({{base}}/assets/logos/verifier-alliance.png){: .header-image}

The Verifier Alliance is an ecosystem collective aiming for easy, unified, and open access to the source-code of EVM smart contracts.
<p>The Verifier Alliance is an ecosystem collective aiming for easy, unified, and open access to the source-code of EVM smart contracts.</p>

[Learn more about the Alliance Partners](who.html)

0 comments on commit c9a0029

Please sign in to comment.