vue-content-placeholders
vue-content-placeholders copied to clipboard
Chrome animation overflow bug!
Hi
The placeholder animation overflows in the actual Chrome version.

Solved with:
@mixin vue-content-placeholders {
position: relative;
overflow: hidden; /* Other browsers */
overflow: overlay; /* Chrome */
&::-webkit-scrollbar {
width: 0;
height: 0;
}
...
}
PR: michalsnik/vue-content-placeholders/pull/12