mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-24 09:01:48 +00:00
12 lines
296 B
Svelte
12 lines
296 B
Svelte
<script lang="ts">
|
|
import lion from '$lib/assets/logo/lion.png';
|
|
</script>
|
|
|
|
<div
|
|
class="flex items-center justify-center rounded-[999px] py-3 px-6 shadow-2xl transition-all duration-700 hover:shadow-md md:py-4 md:px-8"
|
|
>
|
|
<img class="object-cover" src={lion} alt="" />
|
|
</div>
|
|
|
|
<style>
|
|
</style>
|