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