1
1
mirror of https://github.com/primer/css.git synced 2024-12-03 03:33:40 +03:00

Add z-index

This commit is contained in:
Tobias Ahlin 2021-03-18 16:47:42 +01:00
parent ba0bb9e583
commit 14514bc937

View File

@ -27,3 +27,12 @@
}
}
}
// Handling z-index
.z-1 { z-index: 1 !important; }
.z-2 { z-index: 2 !important; }
.z-3 { z-index: 3 !important; }
// Negative z-index
.z-n1 { z-index: -1 !important; }
.z-n2 { z-index: -2 !important; }