Commit 7b8748e99998955997a0bac5b714125850896478

Authored by 梁灏
1 parent 9a7e7e86

fix #2769, close #5697

Showing 1 changed file with 7 additions and 1 deletions   Show diff stats
src/styles/mixins/layout.less
@@ -57,9 +57,15 @@ @@ -57,9 +57,15 @@
57 .@{col-prefix-cls}@{class}-pull-@{index} { 57 .@{col-prefix-cls}@{class}-pull-@{index} {
58 right: auto; 58 right: auto;
59 } 59 }
  60 + .@{col-prefix-cls}@{class}-offset-@{index} {
  61 + margin-left: 0;
  62 + }
  63 + .@{col-prefix-cls}@{class}-order-@{index} {
  64 + order: 0;
  65 + }
60 } 66 }
61 67
62 .make-grid(@class: ~'') { 68 .make-grid(@class: ~'') {
63 .float-grid-columns(@class); 69 .float-grid-columns(@class);
64 .loop-grid-columns(@grid-columns, @class); 70 .loop-grid-columns(@grid-columns, @class);
65 -}  
66 \ No newline at end of file 71 \ No newline at end of file
  72 +}