mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
26 lines
496 B
SCSS
26 lines
496 B
SCSS
@use '../utils/color_variables';
|
|
|
|
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.autocomplete-input {
|
|
background: color_variables.$white !important;
|
|
border: 1px solid color_variables.$grey-light;
|
|
box-sizing: border-box;
|
|
border-radius: 3px;
|
|
width: 99%;
|
|
padding: 4px 0;
|
|
margin-left: 0.5%;
|
|
margin-top: -4px;
|
|
}
|
|
|
|
.autocomplete-input-option {
|
|
padding: 12px;
|
|
&:hover {
|
|
background-color: color_variables.$grey-lightest;
|
|
cursor: pointer;
|
|
}
|
|
}
|