Compare commits

..

3 Commits

Author SHA1 Message Date
Viktor Rådberg
9119ca5518 fix dialog on iOS 2024-05-01 14:46:53 +02:00
Vikeo
2837bb59b3 bumpb 2024-05-01 14:25:03 +02:00
Viktor Rådberg
623aec29f8 Remove MUI (#36)
* remove mui from layouts

* remove button

* remove switch

* remove mui
2024-05-01 14:24:38 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "life-trinket",
"private": true,
"version": "0.9.7",
"version": "0.9.8",
"type": "commonjs",
"engines": {
"node": ">=18",

View File

@@ -35,7 +35,7 @@ export const Dialog: React.FC<{
<dialog
id={id}
ref={dialogRef}
className="backdrop:bg-background-backdrop border-none backdrop:backdrop-blur-[1px] open:visible invisible bg-transparent overflow-visible m-0 justify-self-center top-[10%]"
className="backdrop:bg-background-backdrop border-none backdrop:backdrop-blur-[1px] open:visible invisible bg-transparent overflow-visible my-0 justify-self-center top-[10%]"
>
<button
onClick={() => {
@@ -47,7 +47,7 @@ export const Dialog: React.FC<{
<Cross size="16px" className="text-text-primary" />
</button>
<div className="h-[95%] bg-background-default rounded-2xl max-w-[548px] max-h-[80vh] flex flex-col">
<div className="bg-background-default rounded-2xl max-w-[548px] max-h-[80vh] flex flex-col">
<div className="text-2xl text-center text-text-primary px-8 pt-4">
<h2 className="">{title}</h2>
<Separator height="1px" />