React-SaaS-sample/src/components/SectionHeader.scss
Ruidy Nemausat d501c9d04f template
2019-11-02 20:18:05 +01:00

22 lines
419 B
SCSS

.SectionHeader {
&__header {
margin-bottom: 3rem;
// Remove margin if nothing after header
&:last-child {
margin-bottom: 0;
}
// Added if props.centered is true
&.is-centered {
text-align: center;
}
.subtitle {
max-width: 700px;
// So we can have max-width but still
// have alignment controlled by text-align.
display: inline-block;
}
}
}