Merge pull request #133 from coreui/dev-vnext

v2.1.2
This commit is contained in:
xidedix 2018-11-21 17:22:52 +01:00 committed by GitHub
commit 1cff0707ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,9 @@
## [CoreUI](https://coreui.io/) for [react](./REACT.md) changelog
##### `v2.1.2`
- fix(scss): floating footer ie11 issue
- chore: update `@coreui/react` to `^2.1.1`
##### `v2.1.1`
- refactor(App.js): code splitting with `react-loadable` (waiting for release of `react-router-dom`)
- refactor(routes.js): code splitting with `React.lazy`, remove `react-loadable`

View File

@ -1,6 +1,6 @@
{
"name": "@coreui/coreui-free-react-admin-template",
"version": "2.1.1",
"version": "2.1.2",
"description": "CoreUI React Open Source Bootstrap 4 Admin Template",
"author": "Łukasz Holeczek",
"homepage": "https://coreui.io",
@ -15,7 +15,7 @@
"@coreui/coreui": "^2.1.1",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
"@coreui/icons": "0.3.0",
"@coreui/react": "^2.1.0",
"@coreui/react": "^2.1.1",
"bootstrap": "^4.1.3",
"chart.js": "^2.7.3",
"classnames": "^2.2.6",

View File

@ -1,3 +1,11 @@
html body .app.flex-row.align-items-center {
height: 100vh;
}
// ie11 floating footer temp fix, react only
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
#root {
display: flex;
flex-direction: column;
}
}