Skip to content

Commit

Permalink
buttons width correct
Browse files Browse the repository at this point in the history
  • Loading branch information
sv7000 committed Feb 3, 2025
1 parent b48ef76 commit a67b773
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const TaskSecondaryInfo = () => {
<TaskRow labelTitle={t('pages.taskDetails.VERSION')}>
<ActiveTaskVersionDropdown
task={task}
className="lg:min-w-fit text-black"
className="lg:min-w-[130px] text-black"
forDetails={true}
sidebarUI={true}
taskStatusClassName="text-[0.625rem] w-[7.6875rem] h-[2.35rem] max-w-[7.6875rem] rounded 3xl:text-xs"
Expand Down Expand Up @@ -131,7 +131,7 @@ const TaskSecondaryInfo = () => {
<TaskRow labelTitle={t('pages.taskDetails.STATUS')}>
<ActiveTaskStatusDropdown
task={task}
className="lg:w-auto text-black"
className="lg:min-w-[130px] text-black"
forDetails={true}
sidebarUI={true}
taskStatusClassName="text-[0.625rem] w-[7.6875rem] h-[2.35rem] max-w-[7.6875rem] rounded 3xl:text-xs"
Expand All @@ -150,9 +150,9 @@ const TaskSecondaryInfo = () => {
<TaskRow labelTitle={t('pages.taskDetails.LABELS')}>
<TaskLabels
task={task}
className="lg:min-w-fit text-black lg:mt-0"
className="lg:min-w-[130px] text-black lg:mt-0"
forDetails={true}
taskStatusClassName="text-[0.625rem] w-[7.6875rem] h-[2.35rem] max-w-[7.6875rem] rounded 3xl:text-xs"
taskStatusClassName="text-[0.625rem] h-[2.35rem] min-w-[7.6875rem] rounded 3xl:text-xs"
/>
</TaskRow>
{tags.length > 0 && (
Expand All @@ -179,7 +179,7 @@ const TaskSecondaryInfo = () => {
<TaskRow labelTitle={t('pages.taskDetails.SIZE')} wrapperClassName="text-black">
<ActiveTaskSizesDropdown
task={task}
className="lg:min-w-fit text-black"
className="lg:min-w-[130px] text-black"
forDetails={true}
sidebarUI={true}
taskStatusClassName="text-[0.625rem] w-[7.6875rem] h-[2.35rem] max-w-[7.6875rem] rounded 3xl:text-xs"
Expand All @@ -198,7 +198,7 @@ const TaskSecondaryInfo = () => {
<TaskRow labelTitle={t('pages.taskDetails.PRIORITY')} wrapperClassName="text-black">
<ActiveTaskPropertiesDropdown
task={task}
className="lg:min-w-fit text-black"
className="lg:min-w-[130px] text-black"
forDetails={true}
sidebarUI={true}
taskStatusClassName="text-[0.625rem] w-[7.6875rem] h-[2.35rem] max-w-[7.6875rem] rounded 3xl:text-xs"
Expand Down Expand Up @@ -360,14 +360,14 @@ export function ProjectDropDown(props: ITaskProjectDropdownProps) {
<Listbox.Button
className={clsxm(
`cursor-pointer outline-none w-full flex dark:text-white
items-center justify-between px-4 h-full
items-center justify-between px-2 h-full
border-solid border-color-[#F2F2F2]
dark:bg-[#1B1D22] dark:border dark:border-[#FFFFFF33] rounded-lg`,
styles?.value
)}
>
{selected && (
<div className="">
<div className="mx-1">
<ProjectIcon />
</div>
)}
Expand Down

0 comments on commit a67b773

Please sign in to comment.