From 39926381f188b4f5c29eb279220d9618282af00f Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Thu, 15 Jun 2023 09:03:51 -0300 Subject: [PATCH] Fixed visual bugs on header --- .../src/components/headerComponent/components/menuBar/index.tsx | 2 +- src/frontend/src/components/ui/button.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/components/headerComponent/components/menuBar/index.tsx b/src/frontend/src/components/headerComponent/components/menuBar/index.tsx index 41d7041e9..21a0fc76f 100644 --- a/src/frontend/src/components/headerComponent/components/menuBar/index.tsx +++ b/src/frontend/src/components/headerComponent/components/menuBar/index.tsx @@ -50,7 +50,7 @@ export const MenuBar = ({ flows, tabId }) => {
- diff --git a/src/frontend/src/components/ui/button.tsx b/src/frontend/src/components/ui/button.tsx index c70a9a293..c01e6c814 100644 --- a/src/frontend/src/components/ui/button.tsx +++ b/src/frontend/src/components/ui/button.tsx @@ -15,7 +15,7 @@ const buttonVariants = cva( "border border-input hover:bg-accent hover:text-accent-foreground", primary: "border bg-background text-secondary-foreground hover:bg-background/80 hover:shadow-sm", - secondary: "bg-muted text-secondary-foreground hover:bg-secondary/80", + secondary: "border border-muted bg-muted text-secondary-foreground hover:bg-secondary/80", ghost: "hover:bg-accent hover:text-accent-foreground", link: "underline-offset-4 hover:underline text-primary", },