mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 17:05:43 +03:00
29 lines
336 B
SCSS
29 lines
336 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.cli-window {
|
|
background: transparent;
|
|
color: $white;
|
|
|
|
height: 500px;
|
|
overflow: auto;
|
|
|
|
code {
|
|
height: 100%;
|
|
|
|
&.wrapped {
|
|
white-space: pre-wrap;
|
|
}
|
|
}
|
|
|
|
.is-light {
|
|
color: $text;
|
|
}
|
|
|
|
&.is-elastic {
|
|
height: auto;
|
|
}
|
|
}
|