brevis 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/lib/brevis.rb +1 -1
 - data/stylesheets/brevis_utilities/_layout.scss +21 -0
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: e3a807f72b4f62044b18b143382fcd3efed914d5
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 6f59482e461d76d192797b4647058044186304ee
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 26484ad86a5f70187f94c7cf87f642c4f4bf661f0179509c7f200e2b261b8e07a4b3ea0317ce1df9590e3107aa666b6ae760157fff588e1e309d5e93fb2675fe
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 1da7e2e5fea5d5c14e8217367e21886edc2cee10b6977ee0c392963e70af4ffc0512de8f93eef40dd0dde4bab5ed7bcac810c941d505e6083b6622f548d055da
         
     | 
    
        data/lib/brevis.rb
    CHANGED
    
    
| 
         @@ -15,6 +15,27 @@ $sg-margin-direction: right; 
     | 
|
| 
       15 
15 
     | 
    
         
             
            $sg-rows: 4;
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
17 
     | 
    
         
             
            //////////////////////////////////////////////////////
         
     | 
| 
      
 18 
     | 
    
         
            +
            @mixin content-max-width ($max-content-width: $content-max-width) {
         
     | 
| 
      
 19 
     | 
    
         
            +
              max-width: $max-content-width;
         
     | 
| 
      
 20 
     | 
    
         
            +
              margin: 0 auto;
         
     | 
| 
      
 21 
     | 
    
         
            +
            }
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            @mixin clearfix {
         
     | 
| 
      
 24 
     | 
    
         
            +
              &::after {
         
     | 
| 
      
 25 
     | 
    
         
            +
                content: "";
         
     | 
| 
      
 26 
     | 
    
         
            +
                display: table;
         
     | 
| 
      
 27 
     | 
    
         
            +
                clear: both;
         
     | 
| 
      
 28 
     | 
    
         
            +
              }
         
     | 
| 
      
 29 
     | 
    
         
            +
            }
         
     | 
| 
      
 30 
     | 
    
         
            +
            @mixin clearfix-before {
         
     | 
| 
      
 31 
     | 
    
         
            +
              &::before,
         
     | 
| 
      
 32 
     | 
    
         
            +
              &::after {
         
     | 
| 
      
 33 
     | 
    
         
            +
                content: "";
         
     | 
| 
      
 34 
     | 
    
         
            +
                display: table;
         
     | 
| 
      
 35 
     | 
    
         
            +
                clear: both;
         
     | 
| 
      
 36 
     | 
    
         
            +
              }
         
     | 
| 
      
 37 
     | 
    
         
            +
            }
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
       18 
39 
     | 
    
         
             
            @mixin symmetric-grid(
         
     | 
| 
       19 
40 
     | 
    
         
             
              $cols: $sg-cols,
         
     | 
| 
       20 
41 
     | 
    
         
             
              $space: $sg-spacing,
         
     |