-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added class col #8
Open
babakoto
wants to merge
1
commit into
boeledi:master
Choose a base branch
from
babakoto:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
class Col { | ||
|
||
static const String xs1 = "col-1"; | ||
static const String xs2 = "col-2"; | ||
static const String xs3 = "col-3"; | ||
static const String xs4 = "col-4"; | ||
static const String xs5 = "col-5"; | ||
static const String xs6 = "col-6"; | ||
static const String xs7 = "col-7"; | ||
static const String xs8 = "col-8"; | ||
static const String xs9 = "col-9"; | ||
static const String xs10 = "col-10"; | ||
static const String xs11 = "col-11"; | ||
static const String xs12 = "col-12"; | ||
|
||
static const String sm1 = "col-sm-1"; | ||
static const String sm2 = "col-sm-2"; | ||
static const String sm3 = "col-sm-3"; | ||
static const String sm4 = "col-sm-4"; | ||
static const String sm5 = "col-sm-5"; | ||
static const String sm6 = "col-sm-6"; | ||
static const String sm7 = "col-sm-7"; | ||
static const String sm8 = "col-sm-8"; | ||
static const String sm9 = "col-sm-9"; | ||
static const String sm10 = "col-sm-10"; | ||
static const String sm11 = "col-sm-11"; | ||
static const String sm12 = "col-sm-12"; | ||
|
||
static const String md1 = "col-md-1"; | ||
static const String md2 = "col-md-2"; | ||
static const String md3 = "col-md-3"; | ||
static const String md4 = "col-md-4"; | ||
static const String md5 = "col-md-5"; | ||
static const String md6 = "col-md-6"; | ||
static const String md7 = "col-md-7"; | ||
static const String md8 = "col-md-8"; | ||
static const String md9 = "col-md-9"; | ||
static const String md10 = "col-md-10"; | ||
static const String md11 = "col-md-11"; | ||
static const String md12 = "col-md-12"; | ||
|
||
static const String lg1 = "col-lg-1"; | ||
static const String lg2 = "col-lg-2"; | ||
static const String lg3 = "col-lg-3"; | ||
static const String lg4 = "col-lg-4"; | ||
static const String lg5 = "col-lg-5"; | ||
static const String lg6 = "col-lg-6"; | ||
static const String lg7 = "col-lg-7"; | ||
static const String lg8 = "col-lg-8"; | ||
static const String lg9 = "col-lg-9"; | ||
static const String lg10 = "col-lg-10"; | ||
static const String lg11 = "col-lg-11"; | ||
static const String lg12 = "col-lg-12"; | ||
|
||
static const String xl1 = "col-xl-1"; | ||
static const String xl2 = "col-xl-2"; | ||
static const String xl3 = "col-xl-3"; | ||
static const String xl4 = "col-xl-4"; | ||
static const String xl5 = "col-xl-5"; | ||
static const String xl6 = "col-xl-6"; | ||
static const String xl7 = "col-xl-7"; | ||
static const String xl8 = "col-xl-8"; | ||
static const String xl9 = "col-xl-9"; | ||
static const String xl10 = "col-xl-10"; | ||
static const String xl11 = "col-xl-11"; | ||
static const String xl12 = "col-xl-12"; | ||
|
||
static const String xxl1 = "col-xxl-1"; | ||
static const String xxl2 = "col-xxl-2"; | ||
static const String xxl3 = "col-xxl-3"; | ||
static const String xxl4 = "col-xxl-4"; | ||
static const String xxl5 = "col-xxl-5"; | ||
static const String xxl6 = "col-xxl-6"; | ||
static const String xxl7 = "col-xxl-7"; | ||
static const String xxl8 = "col-xxl-8"; | ||
static const String xxl9 = "col-xxl-9"; | ||
static const String xxl10 = "col-xxl-10"; | ||
static const String xxl11 = "col-xxl-11"; | ||
static const String xxl12 = "col-xxl-12"; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: En enum-like class should be made abstract.