Skip to content

Commit

Permalink
Horizontal scroll removed FIXED
Browse files Browse the repository at this point in the history
  • Loading branch information
CerealKiller97 committed Sep 4, 2019
1 parent e31a838 commit e06b561
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export class ContactComponent implements OnInit {
) {}

public ngOnInit(): void {
this.loadingService.setLoading(true);
setTimeout(() => this.loadingService.setLoading(false), 1000);
this.titleService.setTitle('VideoGamer | Contact');
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
display: flex;
justify-content: center;
align-items: center;
height: 100% !important;
width: 100% !important;
height: 100vh !important;
width: 100vw !important;
position: absolute;
background-color: #3f51b5 !important;
z-index: 1 !important;
overflow: hidden !important;
overflow-x: hidden !important;
transition: 1s ease-in-out !important;
}

Expand Down
18 changes: 17 additions & 1 deletion src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -8818,4 +8818,20 @@ html {
}
}

/*# sourceMappingURL=bootstrap-utilities.css.map */
::-webkit-scrollbar {
width: .3em
}

::-webkit-scrollbar-thumb {
background-color: #f44336;
outline: #708090 solid 1px
}

::-webkit-scrollbar-track {
background-color: #f5f5f5
}

html,
body {
overflow-x: hidden;
}

0 comments on commit e06b561

Please sign in to comment.