vue-content-placeholders icon indicating copy to clipboard operation
vue-content-placeholders copied to clipboard

Chrome animation overflow bug!

Open phlegx opened this issue 6 years ago • 1 comments

Hi

The placeholder animation overflows in the actual Chrome version.

chrome-bug

phlegx avatar Jul 19 '19 13:07 phlegx

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

phlegx avatar Jul 19 '19 14:07 phlegx