feature/Tweak a font in case of copy to clipboard notification

This commit is contained in:
Marko Milić 2024-11-12 11:30:39 +01:00
parent c6b045588a
commit f27f27571c
2 changed files with 6 additions and 1 deletions

View File

@ -67,3 +67,9 @@ main {
padding: 8px;
border-right: solid 1px var(--el-menu-border-color);
}
.el-notification__content {
font-family: 'Roboto', sans-serif !important;
font-size: 16px !important;
}

View File

@ -219,7 +219,6 @@ const copyToClipboard = () => {
// Combine lines to form raw JSON
const rawJson = jsonLines.join('\n');
console.log(rawJson);
textArea.value = rawJson; // Set the text to copy
document.body.appendChild(textArea); // Append the text area to the DOM