Skip to content

Commit

Permalink
add mail
Browse files Browse the repository at this point in the history
  • Loading branch information
Gab committed Dec 18, 2023
1 parent d119dc6 commit d580edc
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
70 changes: 35 additions & 35 deletions src/components/ContactCTA.astro
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
---
import CallToAction from './CallToAction.astro';
import Icon from './Icon.astro';
import CallToAction from "./CallToAction.astro";
import Icon from "./Icon.astro";
---

<aside>
<h2>Interested in working together?</h2>
<CallToAction href="mailto:[email protected]">
Send Me a Message
<Icon icon="paper-plane-tilt" size="1.2em" />
</CallToAction>
<h2>Interested in working together?</h2>
<CallToAction href="mailto:[email protected]">
Send Me a Message
<Icon icon="paper-plane-tilt" size="1.2em" />
</CallToAction>
</aside>

<style>
aside {
display: flex;
flex-direction: column;
align-items: center;
gap: 3rem;
border-top: 1px solid var(--gray-800);
border-bottom: 1px solid var(--gray-800);
padding: 5rem 1.5rem;
background-color: var(--gray-999_40);
box-shadow: var(--shadow-sm);
}
aside {
display: flex;
flex-direction: column;
align-items: center;
gap: 3rem;
border-top: 1px solid var(--gray-800);
border-bottom: 1px solid var(--gray-800);
padding: 5rem 1.5rem;
background-color: var(--gray-999_40);
box-shadow: var(--shadow-sm);
}

h2 {
font-size: var(--text-xl);
text-align: center;
max-width: 15ch;
}
h2 {
font-size: var(--text-xl);
text-align: center;
max-width: 15ch;
}

@media (min-width: 50em) {
aside {
padding: 7.5rem;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
@media (min-width: 50em) {
aside {
padding: 7.5rem;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}

h2 {
font-size: var(--text-3xl);
text-align: left;
}
}
h2 {
font-size: var(--text-3xl);
text-align: left;
}
}
</style>
2 changes: 1 addition & 1 deletion src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ h5 {
.skill_img{
max-width: 0.2rem;
display: inline;

margin: 0.5rem;


}
Expand Down

0 comments on commit d580edc

Please sign in to comment.