Skip to content

Commit b0f3875

Browse files
committed
chore: sync with coreui v2.0.10
2 parents 45f4ae9 + 0446212 commit b0f3875

File tree

7 files changed

+15
-3
lines changed

7 files changed

+15
-3
lines changed

.eslintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"guard-for-in": "error",
3232
"no-alert": "error",
3333
"no-caller": "error",
34+
"no-console": "error",
3435
"no-div-regex": "error",
3536
"no-else-return": "error",
3637
"no-empty-function": "error",

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v2.0.10
2+
- fix(_layout.scss) `navbar-brand` top position IE issue
3+
- chore: update `babel-eslint` to `10.0.0`
4+
15
## v2.0.9
26
- fix(sidebar) remove scrollbar when `sidebar-minimized`
37
- refactor(sidebar) extract `makeScrollbar()` and `destroyScrollbar()`

dist/css/coreui-standalone.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/themes/coreui-dark.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,25 +81,27 @@
8181
"@babel/plugin-transform-runtime": "^7.1.0",
8282
"@babel/preset-env": "^7.1.0",
8383
"autoprefixer": "^9.1.5",
84-
"babel-eslint": "^9.0.0",
84+
"babel-eslint": "^10.0.0",
8585
"babel-plugin-external-helpers": "^7.0.0-beta.3",
8686
"babel-plugin-istanbul": "^5.0.1",
8787
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
8888
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
8989
"clean-css-cli": "^4.2.1",
90+
"copyfiles": "^2.1.0",
9091
"cross-env": "^5.2.0",
9192
"eslint": "^5.6.0",
9293
"eslint-plugin-compat": "^2.5.1",
9394
"node-sass": "^4.9.3",
9495
"nodemon": "^1.18.4",
9596
"npm-run-all": "^4.1.3",
9697
"postcss-cli": "^6.0.0",
98+
"rimraf": "^2.6.2",
9799
"rollup": "^0.66.2",
98100
"rollup-plugin-babel": "^4.0.3",
99101
"rollup-plugin-node-resolve": "^3.4.0",
100102
"semver": "^5.5.1",
101103
"shelljs": "^0.8.2",
102-
"shx": "^0.3.0",
104+
"shx": "^0.3.2",
103105
"stylelint": "^9.5.0",
104106
"stylelint-config-recommended-scss": "^3.2.0",
105107
"stylelint-config-standard": "^18.2.0",
@@ -113,7 +115,8 @@
113115
"popper.js": "^1.14.3"
114116
},
115117
"engines": {
116-
"node": ">=6"
118+
"node": ">= 8",
119+
"npm": ">= 5"
117120
},
118121
"browserslist": [
119122
"last 1 major version",

scss/_layout.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,7 @@ html[dir="rtl"] {
448448

449449
.navbar-brand {
450450
position: absolute;
451+
top: 0;
451452
left: 50%;
452453
margin-left: - ($navbar-brand-width / 2);
453454
}

0 commit comments

Comments
 (0)