26 lines
357 B
SCSS
26 lines
357 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
.image-file {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: $white;
|
|
text-align: center;
|
|
color: $text;
|
|
|
|
.image-file-image {
|
|
margin: auto;
|
|
}
|
|
|
|
.image-file-caption {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.image-file-caption-primary {
|
|
display: block;
|
|
color: $grey;
|
|
}
|
|
}
|