Skip to content

Commit dc35794

Browse files
Merge pull request #46 from communitybridge/fix/small-res
Solved small resolution issue
2 parents b14c9fe + 57a1641 commit dc35794

File tree

3 files changed

+5
-14
lines changed

3 files changed

+5
-14
lines changed

src/app/app.component.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@
99
faqlink="https://docs.linuxfoundation.org/lfx/easycla/v2-current/getting-started/easycla-faqs">
1010
</lfx-header-v2>
1111

12-
<div class="container ">
13-
<div [ngClass]="{'expanded':hasExpanded}" class="landing-page-container row align-items-center">
12+
<div class="container" style="margin-bottom: 20px;">
13+
<div class="landing-page-container row">
1414
<router-outlet></router-outlet>
1515
</div>
16-
</div>
16+
<lfx-footer></lfx-footer>
1717

18-
<!-- Footer view --><div style="position: fixed; bottom: 20px; width: 100%;">
19-
<lfx-footer></lfx-footer>
2018
</div>

src/app/app.component.scss

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@
44
*/
55

66
.landing-page-container {
7-
transition: margin 0.3s;
8-
margin-top: 40px;
9-
padding: 25px 0;
10-
min-height: calc(100vh - 182px);
11-
&.expanded {
12-
margin-top: 105px;
13-
min-height: calc(100vh - 247px);
14-
}
7+
min-height: calc(100vh - 164px);
8+
margin-top: 60px;
159
}
1610

src/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import { Component } from '@angular/core';
55
import { environment } from 'src/environments/environment';
6-
import { EnvConfig } from './config/cla-env-utils';
76
@Component({
87
selector: 'app-root',
98
templateUrl: './app.component.html',

0 commit comments

Comments
 (0)