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/SBogers10/boldt.komma.pro/resources/sass/site/2-Tools/_tools.zindex.scss
/** =================================================================================================
 *  The 'z-index-map' is used for managing the elements stacking order in the 'root' stacking context
 *  This way we have a overview of all the z-index values that are used across the project.
 ==================================================================================================== */


$z-index: (
	z-visible-grid:				10000,
	z-cookie:		 			9999,
	z-header: 					50,
	z-body:						40,
	z-prefooter:			 	30,
	z-footer:				 	20,
	z-subfooter:				10,
);


/**
    USAGE:

    @include z(z-modal);

 */

@mixin z($label) {
	z-index: map-get($z-index,$label);
}