28 lines
478 B
SCSS
28 lines
478 B
SCSS
|
/**
|
||
|
* Copyright (c) HashiCorp, Inc.
|
||
|
* SPDX-License-Identifier: MPL-2.0
|
||
|
*/
|
||
|
|
||
|
.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;
|
||
|
}
|
||
|
}
|
||
|
// NICE TO HAVE: replace all instances with helper "is-no-underline"
|
||
|
.link-plain {
|
||
|
text-decoration: none;
|
||
|
}
|