Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
*yugalmittal05*
  • Loading branch information
yugalmittal05 committed Sep 11, 2021
commit 137b8ed67ad5846ace8585a2af16c6293a11dd37
4 changes: 2 additions & 2 deletions js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ if (/MSIE [5-9]/.test(navigator.userAgent)) {
if ($scope.projLast === 10) {
$scope.projLast = 1000;
showMore = true;
$(".buttonMore").css({ position: "fixed", bottom: 0 });
$(".buttonMore").css({ position: "absolute", bottom: 0 });
} else {
$("html, body").animate({ scrollTop: 380 }, 100);
$scope.projLast = 10;
Expand Down Expand Up @@ -352,7 +352,7 @@ if (/MSIE [5-9]/.test(navigator.userAgent)) {
if (bottomScreen > $("#featuredOrg").offset().top + 25) {
$(".buttonLess").css({ position: "absolute", bottom: -50 });
} else {
$(".buttonLess").css({ position: "fixed", bottom: 0 });
$(".buttonLess").css({ position: "absolute", bottom: 0 });
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion stylesheets/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -7939,7 +7939,7 @@ form.custom .custom.dropdown.open.medium ul {
}
/* line 683, sass/app.scss */
.main .buttonLess {
position: fixed;
position: absolute;
bottom: 0px;
left: 0;
}
Expand Down