mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
20 lines
391 B
SCSS
20 lines
391 B
SCSS
.textarea {
|
|
padding: 10px;
|
|
border-radius: $border-radius;
|
|
border: 1px solid $ui-fleet-black-10;
|
|
background-color: $ui-off-white;
|
|
white-space: pre-wrap;
|
|
|
|
&-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $pad-medium;
|
|
}
|
|
|
|
&--code {
|
|
overflow-wrap: break-word;
|
|
overflow-y: auto;
|
|
font-family: "SourceCodePro", $monospace;
|
|
max-height: 300px;
|
|
}
|
|
}
|