1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-01-28 08:09:40 +01:00

Merge pull request #450 from h3poteto/scroll

Fix scroll-behavior because custom scroll function is already defined
This commit is contained in:
AkiraFukushima 2018-07-22 22:57:16 +09:00 committed by GitHub
commit 35b76b17f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ export default {
width: 100%;
overflow: auto;
transition: all 0.5s;
scroll-behavior: smooth;
scroll-behavior: auto;
}
.timeline-wrapper-with-side-bar {
@ -43,7 +43,7 @@ export default {
width: -webkit-calc(100% - 320px);
overflow: auto;
transition: all 0.5s;
scroll-behavior: smooth;
scroll-behavior: auto;
}
}
</style>