Skip to content

Commit fd35328

Browse files
committed
fix(uiGridRenderContainer): Inherit position
Change position: relative to position: inherit. This will prevent the footer from overlapping the viewport content incorrectly. It appears to not break anything else that's not currently broken... Fixes #2030
1 parent 555ddec commit fd35328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/less/body.less

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
.ui-grid-render-container {
3-
position: relative;
3+
position: inherit;
44
// overflow: hidden;
55

66
.border-radius(0, @gridBorderRadius, @gridBorderRadius, 0);

0 commit comments

Comments
 (0)