We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a8f1ea commit 08ee1abCopy full SHA for 08ee1ab
2 files changed
src/css/index.css
@@ -82,7 +82,7 @@ body {
82
overflow-x: hidden;
83
color: var(--text-color);
84
font-size: 16pt;
85
- overscroll-behavior-y: none;
+ overscroll-behavior: none;
86
}
87
88
table,
src/js/project.js
@@ -43,7 +43,11 @@ window.addEventListener("load", () => {
43
// (userAgent.browser.name === "Mobile Firefox" &&
44
// userAgent.browser.major >= "26"))
45
// ) {
46
- if ("scrollend" in window && userAgent.engine.name === "WebKit") {
+ if (
47
+ userAgent.engine.name === "WebKit" &&
48
+ (window.AppleLiquid !== undefined ||
49
+ CSS.supports("margin-bottom", "env(glass-safe-inset-bottom)"))
50
+ ) {
51
document
52
.querySelectorAll("summary.project-card")
53
.forEach((el) => (el.querySelector("h1").style.marginTop = "-20px"));
0 commit comments