We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f05f62 commit 994cfc9Copy full SHA for 994cfc9
youtube-thumbnails.html
@@ -50,10 +50,10 @@
50
display: flex;
51
align-items: center;
52
justify-content: center;
53
+ cursor: pointer;
54
}
55
.copy-icon {
- margin-left: 5px;
56
- cursor: pointer;
+ margin-right: 10px;
57
58
</style>
59
</head>
@@ -86,9 +86,9 @@ <h1>YouTube Thumbnail Viewer</h1>
86
<div class="thumbnail">
87
<img src="${imageUrl}" alt="Thumbnail ${type}" onclick="toggleExpand(this)">
88
<p class="image-size"></p>
89
- <div class="thumbnail-url">
+ <div class="thumbnail-url" onclick="copyText('${imageUrl}')">
90
+ <span class="copy-icon">📋</span>
91
<span>${imageUrl}</span>
- <span class="copy-icon" onclick="copyText('${imageUrl}')">📋</span>
92
</div>
93
94
`;
0 commit comments