waveterm/frontend/app/element/linkbutton.less

22 lines
512 B
Plaintext
Raw Normal View History

2024-08-20 00:49:40 +02:00
// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
&.link-button {
text-decoration: none;
2024-08-20 00:49:40 +02:00
.button-inner {
display: flex;
border-radius: 6px;
padding: 8px 12px;
background-color: var(--button-grey-bg);
border: 1px solid var(--button-grey-border-color);
color: var(--button-grey-text-color);
i {
margin-right: 4px;
}
&:hover {
color: var(--button-grey-text-color);
2024-08-20 00:49:40 +02:00
}
}
}