diff --git a/src/app/(main)/TopNav.tsx b/src/app/(main)/TopNav.tsx
index 302f0a2f7..9caaeb73c 100644
--- a/src/app/(main)/TopNav.tsx
+++ b/src/app/(main)/TopNav.tsx
@@ -38,8 +38,9 @@ export function TopNav() {
paddingRight="5"
width="100%"
zIndex={100}
+ backgroundColor="surface-raised"
>
-
+
{(websiteId || linkId || pixelId || boardId) && (
<>
@@ -93,6 +94,17 @@ export function TopNav() {
>
)}
+
);
}
diff --git a/src/app/(main)/boards/[boardId]/BoardEditBody.tsx b/src/app/(main)/boards/[boardId]/BoardEditBody.tsx
index a6df61bb5..1bcb79cb4 100644
--- a/src/app/(main)/boards/[boardId]/BoardEditBody.tsx
+++ b/src/app/(main)/boards/[boardId]/BoardEditBody.tsx
@@ -49,7 +49,7 @@ export function BoardEditBody({ requiresBoardWebsite = true }: { requiresBoardWe
}
};
- const handleAddRow = () => {
+ const handle = () => {
updateBoard({
parameters: produce(board.parameters, draft => {
if (!draft.rows) {
@@ -160,14 +160,16 @@ export function BoardEditBody({ requiresBoardWebsite = true }: { requiresBoardWe
))}
{canEdit && (
-
+
-
diff --git a/src/app/(main)/boards/[boardId]/BoardEditColumn.tsx b/src/app/(main)/boards/[boardId]/BoardEditColumn.tsx
index 266a78971..f43f7a8c1 100644
--- a/src/app/(main)/boards/[boardId]/BoardEditColumn.tsx
+++ b/src/app/(main)/boards/[boardId]/BoardEditColumn.tsx
@@ -76,8 +76,8 @@ export function BoardEditColumn({
onMouseLeave={() => setShowActions(false)}
>
{canEdit && canRemoveAction && showActions && (
-
-
+
+
{hasComponent && (
setShowSelect(true)}>
diff --git a/src/app/(main)/boards/[boardId]/BoardEditRow.tsx b/src/app/(main)/boards/[boardId]/BoardEditRow.tsx
index a89c1ff83..e57be12c1 100644
--- a/src/app/(main)/boards/[boardId]/BoardEditRow.tsx
+++ b/src/app/(main)/boards/[boardId]/BoardEditRow.tsx
@@ -135,12 +135,14 @@ export function BoardEditRow({
{canEdit && showActions && (