25 lines
335 B
SCSS
25 lines
335 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
.event {
|
|
display: flex;
|
|
margin-top: 1.5em;
|
|
margin-bottom: 1em;
|
|
|
|
.type {
|
|
margin-right: 0.75em;
|
|
}
|
|
|
|
.timestamp {
|
|
font-size: $size-7;
|
|
color: darken($grey-blue, 20%);
|
|
margin-top: 0.25em;
|
|
}
|
|
|
|
.message {
|
|
margin-top: 0.5em;
|
|
}
|
|
}
|