-
Notifications
You must be signed in to change notification settings - Fork 28
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: removed extra space on the course tab #271
fix: removed extra space on the course tab #271
Conversation
Reviewing |
@@ -392,11 +389,19 @@ internal fun CourseOutlineScreen( | |||
Box(listPadding) { | |||
if (windowSize.isTablet) { | |||
ResumeCourseTablet( | |||
modifier = Modifier.padding( | |||
top = 16.dp, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can use vertical
instead of top
& bottom
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
block = uiState.resumeComponent, | ||
onResumeClick = onResumeClick | ||
) | ||
} else { | ||
ResumeCourse( | ||
modifier = Modifier.padding( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only a minor nit
3d77c38
to
9d80dba
Compare
Removed extra space on the course tab in different scenarios like: with/without new design, with/without resume button, with/without Dates banner.