mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-01-12 02:21:49 +00:00
fix: remove transparency
This commit is contained in:
parent
14a21b1051
commit
3a15a1fcf3
4 changed files with 9 additions and 9 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ui",
|
||||
"version": "6.4.130",
|
||||
"version": "6.4.131",
|
||||
"license": "BUSL-1.1",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.15.5",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<!doctype html>
|
||||
<html lang="en" class="dark bg-transparent" style="color-scheme: dark;">
|
||||
<html lang="en" class="dark bg-black" style="color-scheme: dark;">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
%sveltekit.head%
|
||||
</head>
|
||||
|
||||
<body data-sveltekit-preload-data="off" class="!bg-transparent !relative" data-vaul-drawer-wrapper>
|
||||
<body data-sveltekit-preload-data="off" class="!bg-black !relative" data-vaul-drawer-wrapper>
|
||||
%sveltekit.body%
|
||||
</body>
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
import { toast } from 'svelte-sonner'
|
||||
|
||||
import { onNavigate } from '$app/navigation'
|
||||
import Backplate from '$lib/components/Backplate.svelte'
|
||||
// import Backplate from '$lib/components/Backplate.svelte'
|
||||
import Online from '$lib/components/Online.svelte'
|
||||
import { Menubar } from '$lib/components/ui/menubar'
|
||||
import { Toaster } from '$lib/components/ui/sonner'
|
||||
|
|
@ -60,6 +60,6 @@
|
|||
<Online />
|
||||
<slot />
|
||||
</div>
|
||||
{#if !SUPPORTS.isAndroid}
|
||||
<!-- {#if !SUPPORTS.isAndroid}
|
||||
<Backplate {root} />
|
||||
{/if}
|
||||
{/if} -->
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
import { Input } from '$lib/components/ui/input'
|
||||
import { Switch } from '$lib/components/ui/switch'
|
||||
import { Textarea } from '$lib/components/ui/textarea'
|
||||
import native from '$lib/modules/native'
|
||||
// import native from '$lib/modules/native'
|
||||
import { settings, SUPPORTS } from '$lib/modules/settings'
|
||||
|
||||
const angle = {
|
||||
|
|
@ -51,11 +51,11 @@
|
|||
<SettingCard title='ANGLE Backend' description="What ANGLE backend to use for rendering. DON'T CHANGE WITHOUT REASON! On some Windows machines D3D9 might help with flicker. Changing this setting to something your device doesn't support might prevent Hayase from opening which will require a full reinstall. While Vulkan is an available option it might not be fully supported on Linux.">
|
||||
<SingleCombo bind:value={$settings.angle} items={angle} class='w-40 shrink-0 border-input border' />
|
||||
</SettingCard>
|
||||
|
||||
<!--
|
||||
<div class='font-weight-bold text-xl font-bold'>UI Settings</div>
|
||||
<SettingCard title='Idle Animation' description='Enable/Disable the 3d idle animation. Changing this setting will restart the app.' let:id>
|
||||
<Switch bind:checked={$settings.idleAnimation} on:click={native.restart} {id} />
|
||||
</SettingCard>
|
||||
</SettingCard> -->
|
||||
{:else}
|
||||
<div class='font-weight-bold text-xl font-bold'>UI Settings</div>
|
||||
{/if}
|
||||
|
|
|
|||
Loading…
Reference in a new issue