From f4a6c11a51d577ce453540f06b3d5efa4c63b179 Mon Sep 17 00:00:00 2001 From: Bruno Aseff <155178870+BrunoAseff@users.noreply.github.com> Date: Wed, 19 Feb 2025 16:04:33 +0000 Subject: [PATCH] style: remove button border --- src/components/FullScreenButton.tsx | 2 +- src/components/features/Space.tsx | 4 ++-- src/components/shortcuts/shortcut.tsx | 2 +- src/components/sidebar/SpaceSidebarMobile.tsx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/FullScreenButton.tsx b/src/components/FullScreenButton.tsx index 7e63ceb..e18908d 100644 --- a/src/components/FullScreenButton.tsx +++ b/src/components/FullScreenButton.tsx @@ -50,7 +50,7 @@ const FullscreenButton = ({ contentRef }: FullscreenButtonProps) => { aria-labelledby="full-screen" aria-label="full-screen" onClick={toggleFullscreen} - className="absolute bottom-10 right-[21rem] z-10 hidden overflow-hidden rounded-xl border-[2px] border-muted bg-background p-5 text-sm text-muted-foreground shadow-md animate-in fade-in-0 hover:bg-background hover:text-foreground md:flex md:p-5" + className="absolute bottom-10 right-[21rem] z-10 hidden overflow-hidden rounded-xl bg-background p-5 text-sm text-muted-foreground shadow-md animate-in fade-in-0 hover:bg-background hover:text-foreground md:flex md:p-5" > {isFullscreen ? : } diff --git a/src/components/features/Space.tsx b/src/components/features/Space.tsx index 4222b04..157ae0a 100644 --- a/src/components/features/Space.tsx +++ b/src/components/features/Space.tsx @@ -146,7 +146,7 @@ export default function Space() { className="relative m-0 h-dvh w-full overflow-hidden p-0 font-sans" aria-label="Space selection tabs" > - + {[...spaces] .sort((a, b) => a.id - b.id) .map((space) => ( @@ -219,7 +219,7 @@ export default function Space() { aria-labelledby="config" aria-label="Open config" onClick={() => setOpen(true)} - className="show-in-fullscreen absolute bottom-10 right-14 z-10 hidden overflow-hidden rounded-xl border-[2px] border-muted bg-background p-5 text-sm text-muted-foreground shadow-md animate-in fade-in-0 hover:bg-background hover:text-foreground md:flex md:p-5" + className="show-in-fullscreen absolute bottom-10 right-14 z-10 hidden overflow-hidden rounded-xl bg-background p-5 text-sm text-muted-foreground shadow-md animate-in fade-in-0 hover:bg-background hover:text-foreground md:flex md:p-5" > diff --git a/src/components/shortcuts/shortcut.tsx b/src/components/shortcuts/shortcut.tsx index 730d386..f512be8 100644 --- a/src/components/shortcuts/shortcut.tsx +++ b/src/components/shortcuts/shortcut.tsx @@ -90,7 +90,7 @@ export default function Shortcut() {