This commit is contained in:
tree 2022-05-24 21:50:58 +02:00
rodič 6d4e62675d
revize 891b9dc152
1 změnil soubory, kde provedl 7 přidání a 7 odebrání

Zobrazit soubor

@ -71,10 +71,10 @@
{/if} {/if}
{#if size === "big"} {#if size === "big"}
<div class="w-64 text-center pb-4 m-auto"> <div class="w-64 h-64 text-center pb-4 m-auto">
<img <img
src={currentImg} src={currentImg}
class="w-64 rounded-full m-auto shadow-xl" class="w-64 h-64 rounded-full m-auto shadow-xl"
alt={speaker.name} alt={speaker.name}
on:mouseover={mouseOver} on:mouseover={mouseOver}
on:mouseleave={mouseLeave} on:mouseleave={mouseLeave}
@ -90,7 +90,7 @@
on:mouseleave={mouseLeave} on:mouseleave={mouseLeave}
><img ><img
src={currentImg} src={currentImg}
class="w-36 sm:w-40 rounded-full m-auto shadow-xl" class="w-36 sm:w-40 h-36 sm:h-40 rounded-full m-auto shadow-xl"
alt={speaker.name} alt={speaker.name}
/></a /></a
> >
@ -114,16 +114,16 @@
{/if} {/if}
{#if size === "small"} {#if size === "small"}
<div class="w-16 text-center"> <div class="w-16 h-16 text-center">
<img src={currentImg} class="w-16 rounded-full m-auto" alt={speaker.name} /> <img src={currentImg} class="w-16 h-16 rounded-full m-auto" alt={speaker.name} />
</div> </div>
{/if} {/if}
{#if size === "semi-small"} {#if size === "semi-small"}
<div class="w-10 text-center"> <div class="w-10 h-10 text-center">
<img <img
src={currentImg} src={currentImg}
class="w-10 rounded-full m-auto shadow-md" class="w-10 h-10 rounded-full m-auto shadow-md"
alt={speaker.name} alt={speaker.name}
/> />
</div> </div>