Jquery - Fancybox - Background Page Shift Issue

后端 未结 13 1337
后悔当初
后悔当初 2021-02-02 00:31

Fancybox is loading well and everything opens as I want it to, but the issue occurs in the background-- it\'s visible (and disturbing) that my entire page shifts exactly 8 pixel

13条回答
  •  感情败类
    2021-02-02 00:55

    My solution for "@fancyapps/fancybox": "^3.5.7":

    @import '@fancyapps/fancybox';
    
    .fancybox-active {
      height: 500px; // fix fancybox showing skiplinks
    }
    
    .compensate-for-scrollbar {
      margin-right: auto !important; // fix fancybox messing body's margin: 0 auto
    }
    
    body.compensate-for-scrollbar {
      overflow: auto; // fix fancybox jerking background because of hiding scrollbar
    }
    

提交回复
热议问题