Added deeplinks, added qr code login, added settings, other stuff
This commit is contained in:
parent
462fc19591
commit
8ff8bd9528
32 changed files with 917 additions and 78 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import { cn } from "../lib/utils";
|
||||
import Controls from "@tensamin/tauri/controls";
|
||||
import { isTauri } from "@tauri-apps/api/core";
|
||||
|
||||
export default function CreateScreen({
|
||||
children,
|
||||
|
|
@ -41,7 +42,13 @@ import { useIsMobile } from "../lib/utils";
|
|||
export function StorageDestoryer() {
|
||||
const isMobile = useIsMobile();
|
||||
return (
|
||||
<div className={cn("fixed p-5 bottom-0", isMobile ? "w-full" : "right-0")}>
|
||||
<div
|
||||
className={cn(
|
||||
"fixed p-5 bottom-0",
|
||||
isMobile ? "w-full" : "right-0",
|
||||
isTauri() ? "py-10" : "",
|
||||
)}
|
||||
>
|
||||
<AlertDialog>
|
||||
<AlertDialogTrigger
|
||||
render={
|
||||
|
|
|
|||
Loading…
Reference in a new issue