Skip to content

Commit

Permalink
style: column background
Browse files Browse the repository at this point in the history
- remove background color (use page default)
- thicken column border
  • Loading branch information
akshayka committed Jan 23, 2025
1 parent 9ec3949 commit e624c89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/editor/columns/cell-column.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const Column = memo((props: Props) => {
"flex flex-col gap-5",
// box-content is needed so the column is width=contentWidth, but not affected by padding
props.width === "columns" &&
"w-contentWidth box-content min-h-[100px] border border-t-0 border-[var(--slate-3)] rounded-b-lg px-11 py-6 bg-[var(--slate-2)]",
"w-contentWidth box-content min-h-[100px] border-2 border-t-0 border-[var(--slate-3)] rounded-b-lg px-11 py-6",
)}
>
{props.children}
Expand Down

0 comments on commit e624c89

Please sign in to comment.