E.g. when you have a markup/CSS like this: ``` <div className="content"> <Sticky> <ul className="content-controls"> ...</ul> </Sticky> </div> ``` Where .content has a CSS transform property (e.g. translate), the sticky doesn't work, due to the usage of position:fixed in your script, see: http://meyerweb.com/eric/thoughts/2011/09/12/un-fixing-fixed-elements-with-css-transforms/ and http://stackoverflow.com/questions/15194313/webkit-css-transform3d-position-fixed-issue
E.g. when you have a markup/CSS like this:
Where .content has a CSS transform property (e.g. translate), the sticky doesn't work, due to the usage of position:fixed in your script, see:
http://meyerweb.com/eric/thoughts/2011/09/12/un-fixing-fixed-elements-with-css-transforms/
and
http://stackoverflow.com/questions/15194313/webkit-css-transform3d-position-fixed-issue