Skip to content

Commit

Permalink
Add fix command to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
lens0021 committed Jul 3, 2020
1 parent cef7108 commit a6ce9e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"test": "yarn -s run lint && tsc",
"lint": "yarn -s run lint:prettier && yarn -s run lint:i18n",
"lint:prettier": "prettier '**/*.{js,json,css,less}' --check",
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/"
"lint:i18n": "banana-checker --requireLowerCase=0 i18n/",
"fix": "prettier '**/*.{js,json,css,less}' --write"
},
"devDependencies": {
"@types/jquery": "^3.3.38",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@import '../variables.less';

.ve-ui-targetWidget {
border-radius: 0;
border-radius: 0;
}

.ve-ui-targetWidget-focused {
border-color: @color-progressive;
box-shadow: inset 0 0 0 1px @color-progressive;
border-color: @color-progressive;
box-shadow: inset 0 0 0 1px @color-progressive;
}

0 comments on commit a6ce9e7

Please sign in to comment.