Skip to content

Commit 6b041d3

Browse files
committed
- fix(Footer): IE sticky footer issue
1 parent ad8d0b8 commit 6b041d3

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/assets/scss/_ie-fix.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//IE fix for sticky footer
2+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
3+
.app {
4+
height: 100%;
5+
}
6+
}

src/assets/scss/style.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66

77
// If you want to add something do it here
88
@import "custom";
9+
10+
// ie fixes
11+
@import "ie-fix";

0 commit comments

Comments
 (0)