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
4 changes: 2 additions & 2 deletions src/components/TeamMemberTasks/TeamMemberTask.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ const TeamMemberTask = React.memo(
darkMode ? 'bg-yinmn-blue text-light' : ''
}`}
>
<>
<div className={styles['progress-wrapper']}>
<div className={styles['team-task-progress-container']}>
<div
data-testid={`times-${task.taskName}`}
Expand Down Expand Up @@ -661,7 +661,7 @@ const TeamMemberTask = React.memo(
)}
className={styles['team-task-progress-bar']}
/>
</>
</div>
</td>
)}
</tr>
Expand Down
32 changes: 13 additions & 19 deletions src/components/TeamMemberTasks/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,21 @@
overflow: hidden;
}

.progress-wrapper {
display: inline-block;
}

.team-task-progress-container {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
}


.team-task-progress-bar {
width: 100%;
margin-top: 4px;
}


.team-member-task-review-button {
Expand Down Expand Up @@ -491,13 +503,6 @@
/* min-width: 150px; */
}

.team-task-progress-container {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
}

.progress-text{
margin: 0;
/* border: green 1px solid; */
Expand All @@ -522,17 +527,6 @@
align-self: center;
}

.team-task-progress-bar {
/* width: 60%;
max-width: 180px;
min-width: 100px; */
align-self: flex-start;
margin-top: 4px;
height: 10px;
border-radius: 4px;
}


.hours-btn-div {
display: flex;
flex-direction: row;
Expand Down
Loading