Merge pull request #1491 from hunicus/docs-scrolling

Apply smooth scrolling to docs only
This commit is contained in:
softsimon 2022-03-31 13:30:13 +04:00 committed by GitHub
commit 08accbca5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -23,5 +23,10 @@ export class DocsComponent implements OnInit {
this.activeTab = ( url[2].path === "rest" ) ? 0 : 1;
this.env = this.stateService.env;
this.showWebSocketTab = ( ! ( ( this.env.BASE_MODULE === "bisq" ) || ( this.stateService.network === "bisq" ) || ( this.stateService.network === "liquidtestnet" ) ) );
document.querySelector<HTMLElement>( "html" ).style.scrollBehavior = "smooth";
}
ngOnDestroy(): void {
document.querySelector<HTMLElement>( "html" ).style.scrollBehavior = "auto";
}
}

View File

@ -50,7 +50,6 @@ $dropdown-link-active-bg: #11131f;
html, body {
height: 100%;
scroll-behavior: smooth;
}
body {