commit
1cff0707ff
@ -1,5 +1,9 @@
|
|||||||
## [CoreUI](https://coreui.io/) for [react](./REACT.md) changelog
|
## [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`
|
##### `v2.1.1`
|
||||||
- refactor(App.js): code splitting with `react-loadable` (waiting for release of `react-router-dom`)
|
- 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`
|
- refactor(routes.js): code splitting with `React.lazy`, remove `react-loadable`
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@coreui/coreui-free-react-admin-template",
|
"name": "@coreui/coreui-free-react-admin-template",
|
||||||
"version": "2.1.1",
|
"version": "2.1.2",
|
||||||
"description": "CoreUI React Open Source Bootstrap 4 Admin Template",
|
"description": "CoreUI React Open Source Bootstrap 4 Admin Template",
|
||||||
"author": "Łukasz Holeczek",
|
"author": "Łukasz Holeczek",
|
||||||
"homepage": "https://coreui.io",
|
"homepage": "https://coreui.io",
|
||||||
@ -15,7 +15,7 @@
|
|||||||
"@coreui/coreui": "^2.1.1",
|
"@coreui/coreui": "^2.1.1",
|
||||||
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
|
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
|
||||||
"@coreui/icons": "0.3.0",
|
"@coreui/icons": "0.3.0",
|
||||||
"@coreui/react": "^2.1.0",
|
"@coreui/react": "^2.1.1",
|
||||||
"bootstrap": "^4.1.3",
|
"bootstrap": "^4.1.3",
|
||||||
"chart.js": "^2.7.3",
|
"chart.js": "^2.7.3",
|
||||||
"classnames": "^2.2.6",
|
"classnames": "^2.2.6",
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
html body .app.flex-row.align-items-center {
|
html body .app.flex-row.align-items-center {
|
||||||
height: 100vh;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user