mirror of
https://github.com/rjNemo/React-SaaS-sample
synced 2026-06-06 05:06:38 +00:00
20 lines
379 B
SCSS
20 lines
379 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;
|
|
}
|
|
}
|