Replies: 1 comment
-
Hi @lmalma , Thanks for reporting the issues. Here are some suggestions: Copy-to-Clipboard Notification Issue Positioning: Add position: absolute; to prevent page content from shifting. #notification {
position: absolute;
top: 10px;
right: 10px;
} Stacking Notifications: Prevent multiple notifications from stacking. function showNotification() {
if (document.getElementById('notification').style.display === 'block') return;
document.getElementById('notification').style.display = 'block';
setTimeout(() => {
document.getElementById('notification').style.display = 'none';
}, 3000);
} Footer GitHub Link Issue Recommendation: <a href="https://github.com/npm" target="_blank" rel="noopener noreferrer">
<img src="path_to_github_logo" alt="GitHub">
</a> I hope this helps! Best regards, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Copy-to-Clipboard Notification Issue:
position: absolute;
, causing the entire page content to shift downward until the message disappears, after which it shifts back up.Footer GitHub Link Issue:
https://github.com
) instead of the npm organization's page.https://github.com/npm
to provide direct access to npm's repositories.Beta Was this translation helpful? Give feedback.
All reactions