shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

_center-block.scss (133B)


      1 // Center-align a block level element
      2 
      3 @mixin center-block() {
      4   display: block;
      5   margin-left: auto;
      6   margin-right: auto;
      7 }