mirror of
https://github.com/status-im/consul.git
synced 2025-01-27 14:05:45 +00:00
9d21736e9f
* Add copyright headers to UI files * Ensure copywrite file ignores external libs
22 lines
502 B
SCSS
22 lines
502 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
%tooltip-panel dt {
|
|
cursor: pointer;
|
|
}
|
|
/* This is the top chevron */
|
|
%tooltip-panel dd > div::before {
|
|
@extend %as-pseudo;
|
|
width: 12px;
|
|
height: 12px;
|
|
background-color: var(--token-color-surface-primary);
|
|
border-top: 1px solid var(--token-color-palette-neutral-300);
|
|
border-right: 1px solid var(--token-color-palette-neutral-300);
|
|
transform: rotate(-45deg);
|
|
position: absolute;
|
|
left: 16px;
|
|
top: -7px;
|
|
}
|