Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const NewComponentTemplateSelector = ({
Create a new component using the in-app editor
</Paragraph>
<Heading level={3}>Select a Template</Heading>
<div className="grid grid-cols-3 border-1 rounded-md p-2 w-full">
<div className="grid grid-cols-3 border rounded-md p-2 w-full">
{SUPPORTED_TEMPLATES.map((template) => (
<Button
key={template.name}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export function TaskNodeOutputs({
return (
<div
className={cn(
"flex flex-col justify-end items-center gap-3 p-2 bg-gray-100 border-1 border-gray-200 rounded-lg",
"flex flex-col justify-end items-center gap-3 p-2 bg-gray-100 border border-gray-200 rounded-lg",
condensed && onBackgroundClick && "hover:bg-gray-200/70 cursor-pointer",
)}
onClick={handleBackgroundClick}
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function TooltipContent({
{children}
<TooltipPrimitive.Arrow
className={cn(
"bg-primary fill-primary z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px]",
"bg-primary fill-primary z-50 size-2.5 translate-y-[calc(-50%-2px)] rotate-45 rounded-[2px]",
arrowClassName,
)}
/>
Expand Down