mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +02:00
26 lines
389 B
SCSS
26 lines
389 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
.linked-block {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.linked-block .columns {
|
|
@extend .is-flex-center;
|
|
}
|
|
|
|
.linked-block-item {
|
|
display: grid;
|
|
grid-template-columns: minmax(0, 1fr) 50px 35px;
|
|
gap: 1em 1em;
|
|
}
|
|
|
|
.linked-block-popup-menu {
|
|
box-sizing: border-box;
|
|
grid-column: 3;
|
|
grid-row: 1;
|
|
align-self: center;
|
|
}
|