onedesign / generator-one-base

A foundation for One Design Company projects on the web.
Other
1 stars 1 forks source link

Add absolute-zero sass mixin to `util` #58

Closed cmalven closed 7 years ago

cmalven commented 7 years ago

I end up adding this to almost every single project. I'm surprised it's not here already.

//===============================================================
// Absolute Zero
//===============================================================

@mixin absolute-zero {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}