Skip to content

Commit

Permalink
style: remove button border
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoAseff authored Feb 19, 2025
1 parent a888aac commit f4a6c11
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/FullScreenButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 ? <ArrowsIn size={17} /> : <FullScreenIcon />}
</Button>
Expand Down
4 changes: 2 additions & 2 deletions src/components/features/Space.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
>
<TabsList className="absolute bottom-6 left-8 z-10 min-h-[2.75rem] border-[2px] border-muted md:bottom-10 md:left-auto md:right-28">
<TabsList className="absolute bottom-6 left-8 z-10 min-h-[2.75rem] md:bottom-10 md:left-auto md:right-28">
{[...spaces]
.sort((a, b) => a.id - b.id)
.map((space) => (
Expand Down Expand Up @@ -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"
>
<AnimatedConfig />
</Button>
Expand Down
2 changes: 1 addition & 1 deletion src/components/shortcuts/shortcut.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default function Shortcut() {
<DropdownMenuTrigger asChild>
<Button
aria-label="Shortcut"
className="absolute bottom-10 right-[17.5rem] z-10 overflow-hidden rounded-xl border-[2px] border-muted bg-background p-5 text-sm text-foreground shadow-md animate-in fade-in-0 hover:bg-background hover:text-secondary"
className="absolute bottom-10 right-[17.5rem] z-10 overflow-hidden rounded-xl bg-background p-5 text-sm text-foreground shadow-md animate-in fade-in-0 hover:bg-background hover:text-secondary"
size="icon"
>
<div className="text-xl">
Expand Down
2 changes: 1 addition & 1 deletion src/components/sidebar/SpaceSidebarMobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export function SpaceSidebarMobile() {
size="icon"
aria-labelledby="config"
aria-label="Open config"
className="absolute bottom-6 right-8 z-10 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"
className="absolute bottom-6 right-8 z-10 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"
>
<AnimatedConfig />
</Button>
Expand Down

0 comments on commit f4a6c11

Please sign in to comment.