Skip to content

Commit 451f22c

Browse files
committed
fix(course-page): reduce test results bar height to 75vh
Decrease the customHeight style of the test-results-bar component from 100vh to 75vh. This change improves the component's fit on the page, enhancing overall layout and user experience by preventing excessive vertical space usage.
1 parent faed941 commit 451f22c

File tree

1 file changed

+1
-1
lines changed
  • app/components/course-page/test-results-bar

1 file changed

+1
-1
lines changed

app/components/course-page/test-results-bar/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default class TestResultsBar extends Component<Signature> {
2424
@service declare coursePageState: CoursePageStateService;
2525
@service declare authenticator: AuthenticatorService;
2626
@tracked activeTabSlug = 'logs'; // 'logs' | 'autofix'
27-
@tracked customHeight = htmlSafe('height: 100vh');
27+
@tracked customHeight = htmlSafe('height: 75vh');
2828

2929
get availableTabSlugs() {
3030
if (this.args.activeStep.type === 'CourseStageStep') {

0 commit comments

Comments
 (0)