From 54b8482223288a4d5df41267f3c9235bab06c15e Mon Sep 17 00:00:00 2001 From: schneefux Date: Fri, 24 Mar 2017 17:12:23 +0100 Subject: add minionlivesmatter --- .../assets/bootstrap/scss/utilities/_position.scss | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 minionlivesmatter/templates/assets/bootstrap/scss/utilities/_position.scss (limited to 'minionlivesmatter/templates/assets/bootstrap/scss/utilities/_position.scss') diff --git a/minionlivesmatter/templates/assets/bootstrap/scss/utilities/_position.scss b/minionlivesmatter/templates/assets/bootstrap/scss/utilities/_position.scss new file mode 100644 index 0000000..2cf08bf --- /dev/null +++ b/minionlivesmatter/templates/assets/bootstrap/scss/utilities/_position.scss @@ -0,0 +1,23 @@ +// Positioning + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: $zindex-fixed; +} + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: $zindex-fixed; +} + +.sticky-top { + position: sticky; + top: 0; + z-index: $zindex-sticky; +} -- cgit v1.3.1