mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-17 03:41:07 +02:00
24 lines
369 B
SCSS
24 lines
369 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.link {
|
|
background: transparent;
|
|
border: 0;
|
|
color: $blue;
|
|
cursor: pointer;
|
|
display: inline;
|
|
font: inherit;
|
|
line-height: normal;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: $font-weight-semibold;
|
|
user-select: text;
|
|
|
|
&[disabled] {
|
|
opacity: 0.5;
|
|
cursor: default;
|
|
}
|
|
}
|