Skip to content

Commit a5d08f7

Browse files
committed
🤖 fix: increase workspace list item dot padding to pl-8
1 parent 7266883 commit a5d08f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/WorkspaceListItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ const WorkspaceListItemInner: React.FC<WorkspaceListItemProps> = ({
132132
data-workspace-path={namedWorkspacePath}
133133
data-workspace-id={workspaceId}
134134
>
135-
<div>
135+
<div className="pl-8">
136136
<WorkspaceStatusDot
137137
workspaceId={workspaceId}
138138
lastReadTimestamp={lastReadTimestamp}
@@ -202,7 +202,7 @@ const WorkspaceListItemInner: React.FC<WorkspaceListItemProps> = ({
202202
</div>
203203
</div>
204204
{renameError && isEditing && (
205-
<div className="bg-error-bg border-error text-error absolute top-full right-8 left-7 z-10 mt-1 rounded-sm border px-2 py-1.5 text-xs">
205+
<div className="bg-error-bg border-error text-error absolute top-full right-8 left-8 z-10 mt-1 rounded-sm border px-2 py-1.5 text-xs">
206206
{renameError}
207207
</div>
208208
)}

0 commit comments

Comments
 (0)