HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/sdo/sdoschoonmaak.nl/resources/assets/sass/site/_helpers.sass
/* ==========================================================================
   Helper classes
   ========================================================================== */

/**
 * Use on elements from where the children should not wrap
 */
.nowrap
  white-space: nowrap

/**
 * Hide elements on different screen sizes
 */
$breakpoints :  ('xl' $xlGridBreakpoint) ('lg' $lgGridBreakpoint) ('md' $mdGridBreakpoint) ('sm' $smGridBreakpoint) ('xs' $xsGridBreakpoint)

@each $list in $breakpoints

  $name : nth($list,1)
  $breakpoint : nth($list,2)

  +respond-to-width($breakpoint)
    .hide-on-#{$name}-or-smaller
      display: none

  +respond-to-width-beyond($breakpoint)
    .hide-on-#{$name}-or-larger
      display: none