Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX]: Buttons Moving Out of Container on Task Detail Page #3577

Merged
merged 2 commits into from
Feb 3, 2025
Merged
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 @@ -92,7 +92,7 @@ const TaskSecondaryInfo = () => {
<TaskRow labelTitle={t('pages.taskDetails.VERSION')}>
<ActiveTaskVersionDropdown
task={task}
className="lg:min-w-[170px] 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:min-w-[170px] 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-[170px] 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-[170px] 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-[170px] text-black rounded-xl"
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