You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

browserframe.scss 397B

123456789101112131415161718
  1. @mixin base-browserframe {
  2. /* Removes duplicate scrollbars in some cases */
  3. .v-browserframe {
  4. font-size: 0;
  5. }
  6. /* fix for #14813 - unable to scroll on iOS devices */
  7. .v-webkit.v-ios & .v-browserframe {
  8. -webkit-overflow-scrolling: touch;
  9. overflow:auto;
  10. }
  11. /* Some times a browser frame can contain a span with altenate text */
  12. .v-browserframe > span {
  13. font-size: $font-size;
  14. }
  15. }