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 @@ -110,7 +110,7 @@ export const IssuePropertyEstimates: React.FC<IIssuePropertyEstimates> = observe
<button
ref={setReferenceElement}
type="button"
className={`flex items-center justify-between gap-1 w-full text-xs px-2.5 py-1 rounded border-[0.5px] border-custom-border-300 ${
className={`flex items-center justify-between gap-1 h-5 w-full text-xs px-2.5 py-1 rounded border-[0.5px] border-custom-border-300 ${
disabled ? "cursor-not-allowed text-custom-text-200" : "cursor-pointer hover:bg-custom-background-80"
} ${buttonClassName}`}
>
Expand Down
2 changes: 1 addition & 1 deletion web/components/issues/issue-layouts/properties/labels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const IssuePropertyLabels: React.FC<IIssuePropertyLabels> = observer((pro
});

const label = (
<div className="flex items-center gap-2 text-custom-text-200">
<div className="flex items-center h-5 gap-2 text-custom-text-200">
{value.length > 0 ? (
value.length <= maxRender ? (
<>
Expand Down
2 changes: 1 addition & 1 deletion web/components/issues/issue-layouts/properties/state.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export const IssuePropertyState: React.FC<IIssuePropertyState> = observer((props
<button
ref={setReferenceElement}
type="button"
className={`flex items-center justify-between gap-1 w-full text-xs px-2.5 py-1 rounded border-[0.5px] border-custom-border-300 ${
className={`flex items-center justify-between h-5 gap-1 w-full text-xs px-2.5 py-1 rounded border-[0.5px] border-custom-border-300 ${
disabled ? "cursor-not-allowed text-custom-text-200" : "cursor-pointer hover:bg-custom-background-80"
} ${buttonClassName}`}
onClick={() => !projectStatesByGroup && fetchProjectStates()}
Expand Down
4 changes: 2 additions & 2 deletions web/components/issues/issue-peek-overview/properties.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const PeekOverviewProperties: FC<IPeekOverviewProperties> = observer((pro
placeholder="Start date"
value={issue.start_date}
onChange={handleStartDate}
className="bg-custom-background-80 border-none !px-2.5 !py-0.5"
className="bg-custom-background-80 !rounded border-none !px-2.5 !py-0.5"
maxDate={maxDate ?? undefined}
disabled={disableUserActions}
/>
Expand All @@ -273,7 +273,7 @@ export const PeekOverviewProperties: FC<IPeekOverviewProperties> = observer((pro
placeholder="Due date"
value={issue.target_date}
onChange={handleTargetDate}
className="bg-custom-background-80 border-none !px-2.5 !py-0.5"
className="bg-custom-background-80 !rounded border-none !px-2.5 !py-0.5"
minDate={minDate ?? undefined}
disabled={disableUserActions}
/>
Expand Down