diff --git a/src/components/ui/badge.jsx b/src/components/ui/badge.jsx
index 3da4bcf..6907614 100644
--- a/src/components/ui/badge.jsx
+++ b/src/components/ui/badge.jsx
@@ -16,7 +16,7 @@ const badgeVariants = cva(
"border-transparent bg-destructive text-destructive-foreground shadow hover:bg-destructive/80",
outline: "text-foreground",
green:
- "border-transparent bg-[var(--green-light)] text-white hover:bg-[var(--green-forest)]",
+ "border-transparent bg-[var(--green-forest)] text-white hover:bg-[var(--green-fern)]",
orange:
"border-transparent bg-orange-500 text-white hover:bg-orange-500/80",
orange2:
diff --git a/src/components/ui/button.jsx b/src/components/ui/button.jsx
index ced3c5f..a6252a7 100644
--- a/src/components/ui/button.jsx
+++ b/src/components/ui/button.jsx
@@ -1,8 +1,8 @@
-import * as React from "react"
-import { Slot } from "@radix-ui/react-slot"
-import { cva } from "class-variance-authority"
+import * as React from "react";
+import { Slot } from "@radix-ui/react-slot";
+import { cva } from "class-variance-authority";
-import { cn } from "@/lib/utils"
+import { cn } from "@/lib/utils";
const buttonVariants = cva("btn", {
variants: {
@@ -11,10 +11,10 @@ const buttonVariants = cva("btn", {
secondary: "btn-secondary",
ghost: "btn-ghost",
outline: "btn-outline",
+ "outline-destructive": "btn-outline-destructive",
accent: "btn-accent",
destructive: "btn-destructive",
link: "btn-link",
-
},
size: {
default: "btn-md",
@@ -27,18 +27,20 @@ const buttonVariants = cva("btn", {
variant: "default",
size: "default",
},
-})
+});
-const Button = React.forwardRef(({ className, variant, size, asChild = false, ...props }, ref) => {
- const Comp = asChild ? Slot : "button"
- return (
-
- )
-})
-Button.displayName = "Button"
+const Button = React.forwardRef(
+ ({ className, variant, size, asChild = false, ...props }, ref) => {
+ const Comp = asChild ? Slot : "button";
+ return (
+
+ );
+ }
+);
+Button.displayName = "Button";
-export { Button, buttonVariants }
+export { Button, buttonVariants };
diff --git a/src/pages/admin/AdminBylaws.js b/src/pages/admin/AdminBylaws.js
index 5fdd4df..cee3c44 100644
--- a/src/pages/admin/AdminBylaws.js
+++ b/src/pages/admin/AdminBylaws.js
@@ -210,7 +210,7 @@ const AdminBylaws = () => {
{currentBylaws.title}
-
+
Current Version
@@ -222,7 +222,7 @@ const AdminBylaws = () => {