blob: 03040b29c5e5fd606a866c68a48f00c53c140efc [file] [log] [blame]
Yoshie Muranaka8d129102019-12-19 09:51:55 -08001<template>
2 <section class="page-section">
3 <h2>{{ sectionTitle }}</h2>
4 <slot />
5 </section>
6</template>
7
8<script>
9export default {
10 name: 'PageSection',
Derick Montague09e45cd2020-01-23 15:45:57 -060011 props: {
12 sectionTitle: {
13 type: String,
14 required: true
15 }
16 }
Yoshie Muranaka8d129102019-12-19 09:51:55 -080017};
18</script>
19
20<style lang="scss" scoped>
21.page-section {
22 margin-bottom: $spacer * 2;
23}
24h2 {
25 @include font-size($h4-font-size);
26 margin-bottom: $spacer;
27 &::after {
28 content: '';
29 display: block;
30 width: 100px;
31 border: 1px solid $gray-300;
32 margin-top: 10px;
33 }
34}
35</style>