intervention-pages
Version:
19 lines (18 loc) • 514 B
JavaScript
import { css } from 'lit-element';
import { layoutHorizontal, layoutEnd } from '../../styles/flex-layout-styles';
/**
* Used to style page content header title row actions child elements
* (styling slotted content, using ::slotted will not work on Edge)
*/
// language=CSS
export const pageContentHeaderSlottedStyles = css `
.content-header-actions {
${layoutHorizontal}
${layoutEnd}
}
@media (max-width: 576px) {
.content-header-actions {
display: block;
}
}
`;