We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44428cb commit ad59fbeCopy full SHA for ad59fbe
1 file changed
src/js/project.js
@@ -36,10 +36,11 @@ window.addEventListener("load", async () => {
36
window.addEventListener("load", () => {
37
/**@type {IResult} */
38
const userAgent = new UAParser().getResult();
39
+ // if the engine is webkit and on a newer version (ios >= 26) fuck you apple
40
if (userAgent.engine.name === "WebKit" && "onscrollend" in window) {
41
document
42
.querySelectorAll("summary.project-card")
- .forEach((el) => (el.querySelector("h1").style.marginTop = "-20px"));
43
+ .forEach((el) => (el.querySelector("h1").style.marginTop = "-25px"));
44
}
45
});
46
0 commit comments