Add beter fix for scroll issue

This commit is contained in:
schmelczerandras 2021-01-20 19:06:51 +01:00
parent ebd6c4d994
commit f8eaf3ef8b
3 changed files with 3 additions and 7 deletions

View file

@ -1,12 +1,6 @@
@use '../../style/mixins' as *; @use '../../style/mixins' as *;
@use '../../style/dark-mode/dark-mode' as *; @use '../../style/dark-mode/dark-mode' as *;
#background {
// chrome scrolling does not work on PC without these two
z-index: 0;
position: absolute;
}
.blob { .blob {
position: absolute; position: absolute;
left: 0; left: 0;

View file

@ -6,6 +6,9 @@ main {
overflow-y: scroll; overflow-y: scroll;
perspective: 5px; perspective: 5px;
// chrome scrolling does not work on PC without this
background: rgba(0, 0, 0, 0.005);
@media (hover: hover) { @media (hover: hover) {
&::-webkit-scrollbar-track, &::-webkit-scrollbar-track,
&::-webkit-scrollbar { &::-webkit-scrollbar {

View file

@ -23,7 +23,6 @@
.line-container { .line-container {
position: relative; position: relative;
z-index: 2;
@include q-dependent-line-container(33%); @include q-dependent-line-container(33%);
.line { .line {