aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/BorderedContainer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/BorderedContainer.tsx')
-rw-r--r--frontend/app/components/BorderedContainer.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/components/BorderedContainer.tsx b/frontend/app/components/BorderedContainer.tsx
index d9b2fe8..a1bff35 100644
--- a/frontend/app/components/BorderedContainer.tsx
+++ b/frontend/app/components/BorderedContainer.tsx
@@ -8,7 +8,7 @@ type Props = {
export default function BorderedContainer({ children, className }: Props) {
return (
<div
- className={`bg-white border-2 border-blue-600 rounded-xl p-4 ${className}`}
+ className={`bg-white border-2 border-brand-600 rounded-xl p-4 ${className}`}
>
{children}
</div>