Improve design

This commit is contained in:
video-prize-ranch 2022-01-17 19:25:49 -05:00
parent 7cfe875084
commit 7849164d7e
No known key found for this signature in database
GPG Key ID: D8EAA4C5B12A7281
2 changed files with 12 additions and 2 deletions

View File

@ -18,6 +18,11 @@ nav {
align-items: center;
}
.center {
display: flex;
justify-content: center;
}
.logo {
filter: invert(1) hue-rotate(180deg);
}

View File

@ -47,9 +47,14 @@
<h3>{{this.Title}}</h3>
{{/if}}
{{#if this.Description}}
<p>{{this.Description}}</p>
<p>{{this.Description}}</p><br>
{{/if}}
<img src="{{this.Url}}" loading="lazy">
<div class="center">
<img src="{{this.Url}}" loading="lazy">
</div>
<br>
{{/each}}
</main>