mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-30 23:01:30 +01:00
09f4616ae0
Refactored to be more flexible. Now, it has three types - solid - outline - ghost and subtypes - green - grey - red - yellow It defaults to solid and green when no className is provided. It concatenates defaults if custom classNames are provided.
22 lines
512 B
Plaintext
22 lines
512 B
Plaintext
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
&.link-button {
|
|
text-decoration: none;
|
|
|
|
.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);
|
|
}
|
|
}
|
|
}
|