mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
24 lines
505 B
SCSS
24 lines
505 B
SCSS
@use '../utils/color_variables';
|
|
@use '../utils/font_variables';
|
|
@use '../utils/size_variables';
|
|
|
|
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.copy-text {
|
|
background: color_variables.$ui-gray-010;
|
|
|
|
& > code {
|
|
color: color_variables.$ui-gray-800;
|
|
padding: 14px;
|
|
}
|
|
}
|
|
.transform-pattern-text div:not(:first-child) {
|
|
font-family: font_variables.$family-monospace;
|
|
}
|
|
.transform-decode-formats:not(:last-child) {
|
|
margin-bottom: size_variables.$spacing-12;
|
|
}
|