feat: add copyable links for sharing

This commit is contained in:
insects 2025-03-11 02:09:06 +01:00
parent 62a329aebd
commit 19319b8479
3 changed files with 56 additions and 12 deletions

View file

@ -6,10 +6,20 @@ body {
header {
display: flex;
align-items: center;
gap: 3px;
justify-content: space-between;
margin-bottom: 10px;
}
header .title {
display: flex;
align-items: center;
gap: 4px;
}
header .right {
text-align: right;
}
header h1 {
margin: 0;
}
@ -150,3 +160,12 @@ span#password {
.hidden {
display: none;
}
.copyable {
color: blue;
text-decoration: underline;
}
.copyable:hover {
cursor: pointer;
}