pedf
/
spolky
Archived
1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

27 lines
448 B
Svelte

<style>
.container {
position: relative;
text-align: center;
color: white;
}
.bottom-left {
position: absolute;
bottom: 8px;
left: 16px;
}
</style>
<script>
export let href;
export let name;
export let img="/img/def-spolek.png"
</script>
<div class="container">
<a class="hover-man" href={href} target="_blank">
<img src="{img}" alt="" style="width:100%; height: auto">
<span class="hide">{name}</span>
</a>
</div>