Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] add graphics to contact #28

Merged
merged 2 commits into from
Jan 13, 2024
Merged
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
13 changes: 13 additions & 0 deletions src/components/Contact.astro
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
import { Image } from 'astro:assets';
import shapes from '../graphics/shapes_twirl_2.svg';
---

<section>
<h4 id="contact">CONTACT US</h4>
<div class="spacer"></div>
Expand All @@ -18,6 +23,7 @@
if you need a particular accommodation. Note that requests made less than 24
hours before the event will likely not be accommodated.
</p>
<Image class="img" src={shapes} alt="" />
</section>

<style lang="scss">
Expand Down Expand Up @@ -49,4 +55,11 @@
text-decoration-line: underline; // the underline is too close to the text...
text-underline-offset: 2px;
}

.img {
position: absolute;
right: 0;
top: 73px;
z-index: -1;
}
</style>