poder scrollear links

This commit is contained in:
Cat /dev/Nulo 2023-04-18 19:19:24 -03:00
parent a45d1a00eb
commit 076d661027

View file

@ -74,6 +74,7 @@
</script>
<div class="linking">
<div class="links">
{#each links as link}
<a
href={"href" in link ? link.href : link.id}
@ -87,6 +88,7 @@
{link.content}
</a>
{/each}
</div>
</div>
<style>
@ -94,7 +96,11 @@
max-width: 1280px;
width: 100%;
margin: 0 auto;
overflow-x: auto;
}
.links {
display: flex;
min-width: min-content;
}
a {
@ -108,7 +114,7 @@
line-height: 1;
text-overflow: ellipsis;
overflow: hidden;
max-width: 40vw;
max-width: 45vw;
white-space: nowrap;
}
</style>