You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
332 B

  1. .ui.sticky {
  2. position: static;
  3. }
  4. .ui.sticky.bound {
  5. position: absolute;
  6. left: auto;
  7. right: auto;
  8. }
  9. .ui.sticky.fixed {
  10. position: fixed;
  11. left: auto;
  12. right: auto;
  13. }
  14. .ui.sticky.bound.top,
  15. .ui.sticky.fixed.top {
  16. top: 0px;
  17. bottom: auto;
  18. }
  19. .ui.sticky.bound.bottom,
  20. .ui.sticky.fixed.bottom {
  21. top: auto;
  22. bottom: 0px;
  23. }