mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-23 16:58:27 +01:00
7c45b3679f
Also fixes the styling for the copy button
17 lines
265 B
Plaintext
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);
|
|
}
|
|
}
|