Fixed contact email bug

master
RuisPipe 2021-07-05 16:46:53 +02:00
parent f96ceb6ed1
commit 2c1a01dcff
2 changed files with 7 additions and 1 deletions

View File

@ -346,6 +346,10 @@
color: rgba(252, 252, 252, 0.705);
}
#modal-contact div {
overflow-x: auto;
}
#modal-contact a {
color: #00acd3;
font-weight: bold;

View File

@ -8,7 +8,9 @@ export default function Contact() {
<div id="modal-contact" className="modal">
<h2>{language.pages.contact.title}</h2>
<p>{language.pages.contact.text}</p>
<a href="mailto:alexander@roese.dev">alexander@roese.dev</a>
<div>
<a href="mailto:alexander@roese.dev">alexander@roese.dev</a>
</div>
</div>
)}
</LanguageContext.Consumer>