File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
src/Blazor.AdminLte/Layout Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,11 @@ public static class col
2525 public static FluentColumn _11 { get { return new FluentColumn ( "-11" ) ; } }
2626 public static FluentColumn _12 { get { return new FluentColumn ( "-12" ) ; } }
2727 public static FluentColumn auto { get { return new FluentColumn ( "-auto" ) ; } }
28- }
28+ public static FluentColumn w25 { get { return new FluentColumn ( "w-100" , "" ) ; } }
29+ public static FluentColumn w50 { get { return new FluentColumn ( "w-100" , "" ) ; } }
30+ public static FluentColumn w75 { get { return new FluentColumn ( "w-100" , "" ) ; } }
31+ public static FluentColumn w100 { get { return new FluentColumn ( "w-100" , "" ) ; } }
32+ }
2933
3034 public partial class Column
3135 {
@@ -58,10 +62,10 @@ public override string ToString()
5862
5963 public class FluentColumn : FluentClass
6064 {
61- public FluentColumn ( string s )
65+ public FluentColumn ( string s , string col = "col" )
6266 {
6367 this . _class = new StringBuilder ( ) ;
64- _class . Append ( " col" + s ) ;
68+ _class . Append ( col + s ) ;
6569 }
6670
6771 public FluentColumn ( )
You can’t perform that action at this time.
0 commit comments