Sha256: ffbc23b4b2584bc599a3c9d7bf6678c362432b66f51fff0669c12af40d30b5ea
Contents?: true
Size: 558 Bytes
Versions: 29
Compression:
Stored size: 558 Bytes
Contents
// Foundation for Sites by ZURB // foundation.zurb.com // Licensed under MIT Open Source @mixin foundation-sticky { .sticky-container { position: relative; } .sticky { position: relative; z-index: 0; transform: translate3d(0, 0, 0); } .sticky.is-stuck { position: fixed; z-index: 5; width: 100%; &.is-at-top { top: 0; } &.is-at-bottom { bottom: 0; } } .sticky.is-anchored { position: relative; right: auto; left: auto; &.is-at-bottom { bottom: 0; } } }
Version data entries
29 entries across 29 versions & 4 rubygems