Smaller gallery indicators, height of header

This commit is contained in:
Thomas Smith 2022-12-14 18:05:11 -05:00
parent 23be274a02
commit 27dc7ce601
2 changed files with 3 additions and 4 deletions

View file

@ -18,7 +18,7 @@
</nav> </nav>
<section class="pt-24"> <section class="pt-24">
{#if backLink} {#if backLink}
<header class="px-16 py-2 text-3xl text-gray hover:text-primary"> <header class="px-16 border-b border-gray text-3xl text-gray hover:text-primary">
<a href={backLink}>&#8592</a> <a href={backLink}>&#8592</a>
</header> </header>
{/if} {/if}
@ -81,8 +81,7 @@
top: 0px; top: 0px;
left: 0px; left: 0px;
width: 100%; width: 100%;
height: 50px; height: 40px;
border-bottom: #ccc 1px solid;
} }
slot { slot {

View file

@ -65,7 +65,7 @@
focus = i; focus = i;
resetLoop(); resetLoop();
}} }}
class={`bg-purple h-4 w-4 rounded-lg border-2 border-white transition-colors ${ class={`bg-purple h-3 w-3 rounded-lg border border-white transition-colors ${
i === focus ? 'bg-purple-900' : '' i === focus ? 'bg-purple-900' : ''
}`} }`}
/> />