Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 707 Bytes

position.md

File metadata and controls

27 lines (21 loc) · 707 Bytes

Container Fluid

Class Result
.position-static position: static;
.position-absolute position: absolute;
.position-fixed position: fixed;
.position-sticky position: sticky;

Install separately

@import '~scssfold/src/modules/position/position.scss';

Customizing

Override the following variables before including the module.

$scssfold-positions: (
  static,
  absolute,
  fixed,
  sticky
);