mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-08 15:31:08 +02:00
23 lines
518 B
SCSS
23 lines
518 B
SCSS
@use '../utils/color_variables';
|
|
@use '../utils/font_variables';
|
|
@use '../utils/size_variables';
|
|
|
|
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.namespace-reminder {
|
|
color: color_variables.$grey;
|
|
margin: 0 0 size_variables.$spacing-14 0;
|
|
}
|
|
|
|
.console-reminder p.namespace-reminder {
|
|
color: color_variables.$grey;
|
|
font-family: font_variables.$family-monospace;
|
|
font-size: size_variables.$size-8;
|
|
margin: size_variables.$spacing-4 0 0;
|
|
opacity: 0.7;
|
|
position: absolute;
|
|
}
|