////
/// Core Module : Display no-scroll
/// @group core
////

/**
* Fixe le scroll en arrière plan
*/
:root {
  --scrollbar-width: 0;

  body {
    border-right: var(--scrollbar-width) solid transparent;
  }

  &#{ns-attr(scrolling)} body {
    overflow: hidden;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
  }
}
