mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-10 04:22:18 +00:00
17 lines
304 B
Svelte
17 lines
304 B
Svelte
<script lang="ts">
|
|
export let content: string;
|
|
</script>
|
|
|
|
<span class="web-inline-code web-code">{content}</span>
|
|
|
|
<style>
|
|
.web-inline-code {
|
|
font-size: 0.75rem;
|
|
line-height: 1.25rem;
|
|
|
|
@media (min-width: 1024px) {
|
|
margin-left: 0.5rem;
|
|
}
|
|
}
|
|
</style>
|