Skip to content

Commit

Permalink
various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iamawatermelo committed Sep 12, 2024
1 parent a955b62 commit ab20bb2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
10 changes: 8 additions & 2 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
url('/fonts/InstrumentSans-asciionly-subset-instanced.woff2') format('woff2');
font-display: swap;
}
html {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.5) rgba(0, 0, 0, 0.5);
Expand Down Expand Up @@ -115,6 +116,7 @@
transition: none;
}
}
:global(:root) {
font-family: 'Zenith Sans ASCII', 'Zenith Sans', system-ui, sans-serif;
line-height: 1.5;
Expand Down Expand Up @@ -249,13 +251,17 @@
padding: 4em;
min-width: 100vw;
}
footer > * {
margin: auto;
max-width: 1024px;
}
.footer-inner {
display: flex;
flex-direction: column;
gap: 4em;
margin: auto;
max-width: 1024px;
margin-bottom: 2em;
}
@media (min-width: 1024px) {
Expand Down
7 changes: 2 additions & 5 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
</div>
<p class="legal">
We collect your IP address and approximate location.
By submitting, you agree that you've read your <a href="/privacy">privacy policy</a>.
By submitting, you agree that you've read our <a href="/privacy">privacy policy</a>.
</p>
</form>
</div>
Expand Down Expand Up @@ -241,10 +241,7 @@
.legal {
opacity: 90%;
font-size: 0.8em;
}
.legal > a:hover {
text-decoration: underline;
max-width: 100%;
}
@media (min-width: 640px) and (min-height: 640px) {
Expand Down

0 comments on commit ab20bb2

Please sign in to comment.