diff --git a/src/assets/inter.ttf b/src/assets/inter.ttf new file mode 100644 index 0000000..937b1e9 Binary files /dev/null and b/src/assets/inter.ttf differ diff --git a/src/assets/font.ttf b/src/assets/onest.ttf similarity index 100% rename from src/assets/font.ttf rename to src/assets/onest.ttf diff --git a/src/assets/tailwind.css b/src/assets/tailwind.css index 11ff412..e64b648 100644 --- a/src/assets/tailwind.css +++ b/src/assets/tailwind.css @@ -1,9 +1,19 @@ @font-face { - font-family: "font"; - src: url("font.ttf") format("truetype"); + font-family: "Inter"; + src: url("inter.ttf") format("truetype"); } -* { - font-family: "font" !important; + +@font-face { + font-family: "Onest"; + src: url("onest.ttf") format("truetype"); +} + +.inter { + font-family: "Inter", sans-serif !important; +} + +.onest { + font-family: "Onest", sans-serif !important; } @tailwind base; @@ -47,7 +57,7 @@ @keyframes animatedgradient { 0% { background-position: 0% 50%; - } + } 50% { background-position: 100% 50%; } @@ -62,6 +72,6 @@ /* Hide scrollbar for IE, Edge and Firefox */ .no-scrollbar { - -ms-overflow-style: none; /* IE and Edge */ - scrollbar-width: none; /* Firefox */ -} \ No newline at end of file + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ +} diff --git a/src/entries/options/App.tsx b/src/entries/options/App.tsx index f78a803..d77b142 100644 --- a/src/entries/options/App.tsx +++ b/src/entries/options/App.tsx @@ -11,13 +11,16 @@ import { PageAssistProvider } from "@/components/Common/PageAssistProvider" function IndexOption() { const { mode } = useDarkMode() - const { t } = useTranslation() + const { t, i18n } = useTranslation() return ( ( ( { const { mode } = useDarkMode() + const { i18n } = useTranslation() return ( -
+
} /> } /> @@ -32,9 +37,13 @@ export const OptionRouting = () => { export const SidepanelRouting = () => { const { mode } = useDarkMode() + const { i18n } = useTranslation() return ( -
+
} /> } /> diff --git a/wxt.config.ts b/wxt.config.ts index 23b55e3..a3d4010 100644 --- a/wxt.config.ts +++ b/wxt.config.ts @@ -24,7 +24,7 @@ export default defineConfig({ srcDir: "src", outDir: "build", manifest: { - version: "1.1.4", + version: "1.1.5", name: '__MSG_extName__', description: '__MSG_extDescription__', default_locale: 'en',