blob: dd39ddd516715c50bae41dc830be4cb874dc98ce [file] [log] [blame]
Yoshie Muranaka8d129102019-12-19 09:51:55 -08001<template>
Yoshie Muranakac11d3892020-02-19 08:07:40 -08002 <div class="page-section">
3 <h2 v-if="sectionTitle">{{ sectionTitle }}</h2>
Yoshie Muranaka8d129102019-12-19 09:51:55 -08004 <slot />
Yoshie Muranakac11d3892020-02-19 08:07:40 -08005 </div>
Yoshie Muranaka8d129102019-12-19 09:51:55 -08006</template>
7
8<script>
9export default {
10 name: 'PageSection',
Derick Montague09e45cd2020-01-23 15:45:57 -060011 props: {
12 sectionTitle: {
13 type: String,
Derick Montague602e98a2020-10-21 16:20:00 -050014 default: '',
15 },
16 },
Yoshie Muranaka8d129102019-12-19 09:51:55 -080017};
18</script>
19
20<style lang="scss" scoped>
21.page-section {
SurenNeware8ff08522020-08-28 20:01:55 +053022 margin-bottom: $spacer * 4;
Yoshie Muranaka8d129102019-12-19 09:51:55 -080023}
Yoshie Muranakac11d3892020-02-19 08:07:40 -080024
Yoshie Muranaka8d129102019-12-19 09:51:55 -080025h2 {
Dixsie Wolmersbe88c612020-07-20 13:29:54 -050026 @include font-size($h3-font-size);
Yoshie Muranaka8d129102019-12-19 09:51:55 -080027 margin-bottom: $spacer;
Yoshie Muranaka8d129102019-12-19 09:51:55 -080028}
29</style>