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.
24 lines
392 B
Svelte
24 lines
392 B
Svelte
4 years ago
|
<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}><img src="{img}" alt="" style="width:100%; height: auto"></a>
|
||
|
</div>
|