blob: 91bf346f778245c731116b9dd0863d2e34374f7a [file] [log] [blame]
Yoshie Muranaka8d129102019-12-19 09:51:55 -08001<template>
Yoshie Muranaka74f86872020-02-10 12:28:37 -08002 <main id="main-content" class="page-container">
Yoshie Muranaka8d129102019-12-19 09:51:55 -08003 <slot />
4 </main>
5</template>
6
7<script>
8export default {
9 name: 'PageContainer'
10};
11</script>
12
13<style lang="scss" scoped>
Derick Montague40865722020-04-13 17:01:19 -050014@import 'src/assets/styles/helpers';
15
Yoshie Muranaka8d129102019-12-19 09:51:55 -080016main {
Yoshie Muranaka74f86872020-02-10 12:28:37 -080017 width: 100%;
18 height: 100%;
Yoshie Muranaka8d129102019-12-19 09:51:55 -080019 padding-top: $spacer * 1.5;
20 padding-bottom: $spacer * 3;
Yoshie Muranaka74f86872020-02-10 12:28:37 -080021 padding-left: $spacer;
Yoshie Muranaka8d129102019-12-19 09:51:55 -080022 padding-right: $spacer;
Yoshie Muranaka74f86872020-02-10 12:28:37 -080023 @include media-breakpoint-up($responsive-layout-bp) {
24 padding-left: $spacer * 2;
25 }
Yoshie Muranaka8d129102019-12-19 09:51:55 -080026}
27</style>