mirror of https://github.com/status-im/consul.git
27 lines
671 B
SCSS
27 lines
671 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
%tabular-dl {
|
|
> dt:last-of-type,
|
|
> dd:last-of-type {
|
|
border-color: var(--token-color-palette-neutral-300) !important;
|
|
}
|
|
dt,
|
|
dd {
|
|
border-color: var(--token-color-palette-neutral-300) !important;
|
|
color: var(--token-color-hashicorp-brand) !important;
|
|
}
|
|
dt {
|
|
font-weight: var(--token-typography-font-weight-bold);
|
|
}
|
|
dd .copy-button button::before {
|
|
background-color: var(--token-color-hashicorp-brand);
|
|
}
|
|
dt.type + dd span::before {
|
|
@extend %with-info-circle-outline-mask, %as-pseudo;
|
|
background-color: var(--token-color-foreground-faint);
|
|
}
|
|
}
|