Sha256: 0359fdae7acc19ea21c00f5b9c4fd5b4857db53ee7e82e5749335b8d2e3c583f
Contents?: true
Size: 933 Bytes
Versions: 303
Compression:
Stored size: 933 Bytes
Contents
.position_relative { position: relative; } .position_absolute { position: absolute; } .position_fixed { position: fixed; } .position_sticky { position: sticky; } .position_static { position: static; } .z_index_1 { z-index: 100; } .z_index_2 { z-index: 200; } .z_index_3 { z-index: 300; } .z_index_4 { z-index: 400; } .z_index_5 { z-index: 500; } .z_index_6 { z-index: 600; } .z_index_7 { z-index: 700; } .z_index_8 { z-index: 800; } .z_index_9 { z-index: 900; } .z_index_10 { z-index: 1000; } $zIndex_values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10; @each $size, $size_value in $breakpoints_grid { @each $zIndex_value in $zIndex_values { $min_size: map-get($size_value, "min"); $max_size: map-get($size_value, "max"); .z_index_#{$size}_#{$zIndex_value} { @include break_on($min_size, $max_size) { z-index: #{$zIndex_value * 100} !important; } } } }
Version data entries
303 entries across 303 versions & 1 rubygems