|
    Ultima modificación |
    Ver Log
    | 
  
  
  
     
        
        | Rev | Autor | Línea Nro. | Línea | 
     
     
        
           | 1 | efrain | 1 | // stylelint-disable declaration-no-important
 | 
        
           |  |  | 2 |   | 
        
           |  |  | 3 | @mixin float-left() {
 | 
        
           |  |  | 4 |   float: left !important;
 | 
        
           |  |  | 5 |   @include deprecate("The `float-left` mixin", "v4.3.0", "v5");
 | 
        
           |  |  | 6 | }
 | 
        
           |  |  | 7 | @mixin float-right() {
 | 
        
           |  |  | 8 |   float: right !important;
 | 
        
           |  |  | 9 |   @include deprecate("The `float-right` mixin", "v4.3.0", "v5");
 | 
        
           |  |  | 10 | }
 | 
        
           |  |  | 11 | @mixin float-none() {
 | 
        
           |  |  | 12 |   float: none !important;
 | 
        
           |  |  | 13 |   @include deprecate("The `float-none` mixin", "v4.3.0", "v5");
 | 
        
           |  |  | 14 | }
 |