intervention-pages
Version:
22 lines (20 loc) • 562 B
JavaScript
import { html } from '@polymer/polymer/polymer-element.js';
// language=HTML
export const sectionContentStylesPolymer = html ` <style>
.content-section + .content-section,
.content-section + * + .content-section,
.content-section:not(:first-of-type) {
margin-top: 24px;
}
etools-error-messages-box + .content-section {
margin-top: 0;
}
@media print {
.content-section {
border: 1px solid var(--list-divider-color);
--paper-material-elevation-1: {
box-shadow: none;
}
}
}
</style>`;