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
// Alerts | |
@include alert-variant($background, $border, $text-color); | |
// Background Variant | |
@include bg-variant($parent, $color); | |
// Border Radius | |
@include border-top-radius($radius); | |
@include border-right-radius($radius); | |
@include border-bottom-radius($radius); |
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
### Git commands | |
* Init a git/github repo, avoiding the user/password request issue | |
$ git init | |
$ git add . | |
$ git commit -m "Initial commit" | |
# Create Github repo | |
$ git remote add origin [email protected]:<username>/<repo_name>.git | |
$ git push -u origin master |
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
# Sublime Files | |
*.sublime-project | |
*.sublime-workspace | |
# Eclipse | |
.classpath | |
.project | |
.settings/ | |
# Intellij |