Skip to content

Commit

Permalink
Update grid system
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyuchia committed Jul 30, 2017
1 parent 34bb6f6 commit 79f0a2f
Show file tree
Hide file tree
Showing 14 changed files with 791 additions and 4,141 deletions.
14 changes: 11 additions & 3 deletions .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
.DS_Store
*.zip
node_modules
*~
*.rar
.DS_Store
.Thumbs
.thumbs
._*
~*
*~
node_modules
build
.conf
.ftpconfig
.sftpconfig
package-lock.json
25 changes: 25 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"rules": {
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-newline-after": "always",
"declaration-block-semicolon-newline-after": "always",
"block-opening-brace-space-before": "always",
"color-hex-case": "lower",
"color-named": "never",
"color-no-invalid-hex": true,
"function-comma-newline-after": "never-multi-line",
"function-comma-space-after": "always",
"no-duplicate-selectors": true,
"no-eol-whitespace": true,
"indentation": "tab",
"number-leading-zero": "always",
"property-no-unknown": [ true, {
"ignoreProperties": [
"composes"
]
}],
"selector-list-comma-newline-after": "always",
"unit-case": "lower",
"unit-whitelist": ["em", "rem", "s", "vmax", "vmin", "vh", "vw", "%", "px"]
}
}
Loading

0 comments on commit 79f0a2f

Please sign in to comment.