Import Variables SASS Global

I desabled the scroll in some pages using the following code in scscc:

page-menu {
  .no-scroll {
    // Remove the Scroll in pages
    .scroll-content {
      overflow: hidden !important;
    }
  }
}

how to use this it in variables global
Example :

// Testing how to desable scroll in pages
$no-scroll: (
// Remove the Scroll in pages
.scroll-content {
  overflow: hidden !important;
}
);

how to make ?