open-nomad/ui/app/styles/core/message.scss
2023-04-10 15:36:59 +00:00

31 lines
493 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.message {
background: $body-background-color;
.message-header {
background: $body-background-color;
color: $text;
font-size: $size-5;
font-weight: $weight-semibold;
padding-left: 0;
padding-right: 0;
}
.message-body {
border: 1px solid $grey-lighter;
border-radius: $radius;
&.is-full-bleed {
padding: 0;
}
.table {
margin-bottom: 0;
}
}
}