From efebba85841219586d41de4123e2d349bcf128a1 Mon Sep 17 00:00:00 2001 From: clement callaert Date: Sun, 5 Nov 2023 22:18:09 +0100 Subject: [PATCH] cursor --- public/css/base.css | 4 ++-- routes/posts.js | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/public/css/base.css b/public/css/base.css index cfbc236..a886fb5 100644 --- a/public/css/base.css +++ b/public/css/base.css @@ -55,7 +55,7 @@ body { } .custom-cursor { - cursor: pointer; + cursor: url("cursor/GTA5.cur"), auto; text-decoration: none; } @@ -125,7 +125,7 @@ footer div p { outline: none; color: rgb(255, 255, 255); background: #111a52; - cursor: pointer; + cursor: url("cursor/GTA5.cur"), auto; position: relative; z-index: 0; border-radius: 10px; diff --git a/routes/posts.js b/routes/posts.js index a62b42c..79cc622 100644 --- a/routes/posts.js +++ b/routes/posts.js @@ -83,6 +83,7 @@ router.post('/submitResolution/:postId', upload.single('image'), async function prenom: prenom, imagePath: path } + const result = await db.getDb().collection('res').insertOne(resolution); return res.redirect('/hotLine') })