Skip to content

Commit 1cff070

Browse files
authored
Merge pull request #133 from coreui/dev-vnext
v2.1.2
2 parents 7489ecb + 1fb2478 commit 1cff070

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [CoreUI](https://coreui.io/) for [react](./REACT.md) changelog
22

3+
##### `v2.1.2`
4+
- fix(scss): floating footer ie11 issue
5+
- chore: update `@coreui/react` to `^2.1.1`
6+
37
##### `v2.1.1`
48
- refactor(App.js): code splitting with `react-loadable` (waiting for release of `react-router-dom`)
59
- refactor(routes.js): code splitting with `React.lazy`, remove `react-loadable`

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-react-admin-template",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "CoreUI React Open Source Bootstrap 4 Admin Template",
55
"author": "Łukasz Holeczek",
66
"homepage": "https://coreui.io",
@@ -15,7 +15,7 @@
1515
"@coreui/coreui": "^2.1.1",
1616
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.2.0",
1717
"@coreui/icons": "0.3.0",
18-
"@coreui/react": "^2.1.0",
18+
"@coreui/react": "^2.1.1",
1919
"bootstrap": "^4.1.3",
2020
"chart.js": "^2.7.3",
2121
"classnames": "^2.2.6",

src/scss/_ie-fix.scss

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
html body .app.flex-row.align-items-center {
22
height: 100vh;
33
}
4+
5+
// ie11 floating footer temp fix, react only
6+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
7+
#root {
8+
display: flex;
9+
flex-direction: column;
10+
}
11+
}

0 commit comments

Comments
 (0)