Skip to content

Commit f0b98ce

Browse files
authored
[WEB-5708] style: space app kanban card UI (#8368)
1 parent 4cac953 commit f0b98ce

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

apps/space/core/components/issues/issue-layouts/kanban/block-reactions.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ export const BlockReactions = observer(function BlockReactions(props: Props) {
2020
if (!canVote && !canReact) return <></>;
2121

2222
return (
23-
<div
24-
className={cn(
25-
"flex flex-wrap border-t-[1px] outline-transparent w-full border-t-subtle-1 bg-surface-2 rounded-b-sm"
26-
)}
27-
>
23+
<div className="flex flex-wrap border-t-[1px] outline-transparent w-full border-t-subtle-1 bg-surface-2 rounded-b-lg">
2824
<div className="py-2 px-3 flex flex-wrap items-center gap-2">
2925
{canVote && (
3026
<div

apps/space/core/components/issues/issue-layouts/kanban/block.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const KanbanIssueDetailsBlock = observer(function KanbanIssueDetailsBlock(props:
4141
const { project_details } = usePublish(anchor.toString());
4242

4343
return (
44-
<div className="space-y-2">
44+
<div className="space-y-2 px-3 py-2">
4545
<WithDisplayPropertiesHOC displayProperties={displayProperties || {}} displayPropertyKey="key">
4646
<div className="relative">
4747
<div className="line-clamp-1 text-11 text-tertiary">

0 commit comments

Comments
 (0)