waveterm/frontend/app/element/copybutton.less
Evan Simkowitz 7c45b3679f
Add syntax highlighting to the Markdown element (#356)
Also fixes the styling for the copy button
2024-09-09 11:56:21 -07:00

17 lines
265 B
Plaintext

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
.copy-button {
padding: 5px 5px !important;
opacity: 0.5;
&:hover {
opacity: 1;
}
&.copied {
opacity: 1;
color: var(--success-color);
}
}