feat: work on code highlighting

This commit is contained in:
Alexander Daichendt 2022-07-26 22:11:03 +02:00
parent c342dadf21
commit f18cdf501a
8 changed files with 120 additions and 23 deletions

View file

@ -15,23 +15,24 @@
import Icon from 'mdi-svelte';
import Element from '../components/element.svelte';
import Link from '../components/Link.svelte';
import ListItem from '../components/ListItem.svelte';
</script>
<h1>Contact Information</h1>
<ul>
<li>
<ListItem>
<Icon path={mdiEmailEditOutline} />
E-Mail: <Link disableIcon href="mailto:me@daichendt.one">me@daichendt.one</Link>
</li>
<li>
</ListItem>
<ListItem>
<Icon path={mdiGithub} />
Github: <Link disableIcon href="https://github.com/AlexDaichendt">AlexDaichendt</Link>
</li>
<li>
</ListItem>
<ListItem>
<span style="font-size:1rem"><Element /></span>
Element: @alexdaichendt:matrix.org
</li>
</ListItem>
</ul>
I usually reply within a couple minutes - if it is important.
@ -40,7 +41,4 @@ I usually reply within a couple minutes - if it is important.
ul {
list-style-type: none;
}
li {
margin-bottom: 0.5rem;
}
</style>