mirror of
https://github.com/Ku6epXBOCTuK/easy-png-tools.git
synced 2026-09-14 21:46:35 +00:00
chore: update isolation plugin
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<title>easy-png-tools</title>
|
||||
<rect width="32" height="32" rx="7" fill="#2563eb"/>
|
||||
<rect x="5" y="5" width="22" height="22" rx="4" fill="#ffffff"/>
|
||||
<clipPath id="pic">
|
||||
<rect x="8" y="8" width="16" height="16" rx="2"/>
|
||||
</clipPath>
|
||||
<g clip-path="url(#pic)">
|
||||
<rect x="8" y="8" width="16" height="16" fill="#eff6ff"/>
|
||||
<g fill="#bfdbfe">
|
||||
<rect x="12" y="8" width="4" height="4"/>
|
||||
<rect x="20" y="8" width="4" height="4"/>
|
||||
<rect x="8" y="12" width="4" height="4"/>
|
||||
<rect x="16" y="12" width="4" height="4"/>
|
||||
<rect x="12" y="16" width="4" height="4"/>
|
||||
<rect x="20" y="16" width="4" height="4"/>
|
||||
<rect x="8" y="20" width="4" height="4"/>
|
||||
<rect x="16" y="20" width="4" height="4"/>
|
||||
</g>
|
||||
<circle cx="11.6" cy="12.2" r="2.1" fill="#2563eb"/>
|
||||
<path d="M7 25 L13 15.2 L16.6 20.4 L19.2 17 L25.4 25 Z" fill="#2563eb"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 920 B |
@@ -1,4 +1,4 @@
|
||||
import type { CategoryId } from "../v1/categories";
|
||||
import type { CategoryId } from "../categories";
|
||||
|
||||
export const LOCALES = ["ru", "en"] as const;
|
||||
export type Locale = (typeof LOCALES)[number];
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { page } from "$app/state";
|
||||
import favicon from "$lib/assets/favicon.svg";
|
||||
import Footer from "$lib/components/layout/Footer.svelte";
|
||||
import TopBar from "$lib/components/layout/TopBar.svelte";
|
||||
import { initLocale } from "$lib/i18n/locale.svelte";
|
||||
@@ -45,7 +44,7 @@
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<link rel="icon" href={favicon} />
|
||||
<link rel="icon" href="/favicon.svg" />
|
||||
</svelte:head>
|
||||
|
||||
<main class="preview-root" data-theme={theme}>
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { resolve } from "$app/paths";
|
||||
import favicon from "$lib/assets/favicon.svg";
|
||||
import { LOCALES, type Locale } from "$lib/v1/i18n/dict";
|
||||
import { getLocale, initLocale, setLocale } from "$lib/v1/i18n/locale.svelte";
|
||||
import { t } from "$lib/v1/i18n/t";
|
||||
@@ -19,7 +18,7 @@
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<link rel="icon" href={favicon} />
|
||||
<link rel="icon" href="/favicon.svg" />
|
||||
</svelte:head>
|
||||
|
||||
<div class="app">
|
||||
|
||||
Reference in New Issue
Block a user