mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-14 10:21:08 +02:00
16 lines
303 B
SCSS
16 lines
303 B
SCSS
@use '../utils/color_variables';
|
|
@use '../utils/font_variables';
|
|
|
|
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.doc-link {
|
|
color: color_variables.$blue;
|
|
font-weight: font_variables.$font-weight-semibold;
|
|
&:hover {
|
|
text-decoration: underline !important;
|
|
}
|
|
}
|