Блоги #1

Merged
rndtrash merged 64 commits from feature-blogs into master 2025-10-22 08:44:56 +03:00
Showing only changes of commit f79762b1e0 - Show all commits

View file

@ -0,0 +1,13 @@
<script lang="ts">
import Icon from '@iconify/svelte';
</script>
<section class="flex flex-col sm:flex-row">
<div class="flex flex-row items-center gap-2 bg-blue-500 p-2 text-slate-50">
<Icon width={32} height={32} icon={'material-symbols:info'} color={'#f8fafc'} />
<span class="sm:hidden">Обратите внимание</span>
</div>
<div class="bg-blue-50 p-4 sm:grow">
<slot />
</div>
</section>