mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-05 20:36:26 +02:00
24 lines
424 B
SCSS
24 lines
424 B
SCSS
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.link {
|
|
background: transparent;
|
|
border: 0;
|
|
color: var(--token-color-foreground-action);
|
|
cursor: pointer;
|
|
display: inline;
|
|
font: inherit;
|
|
line-height: normal;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: var(--token-typography-font-weight-semibold);
|
|
user-select: text;
|
|
|
|
&[disabled] {
|
|
opacity: 0.5;
|
|
cursor: default;
|
|
}
|
|
}
|