26 lines
443 B
SCSS
26 lines
443 B
SCSS
.attribute-label {
|
|
@include data-label;
|
|
clear: left;
|
|
float: left;
|
|
margin-bottom: $base-spacing;
|
|
margin-top: 0.25em;
|
|
text-align: right;
|
|
width: calc(15% - 1rem);
|
|
}
|
|
|
|
.preserve-whitespace {
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.attribute-data {
|
|
float: left;
|
|
margin-bottom: $base-spacing;
|
|
margin-left: 2rem;
|
|
width: calc(85% - 1rem);
|
|
}
|
|
|
|
.attribute--nested {
|
|
border: $base-border;
|
|
padding: $small-spacing;
|
|
}
|