diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-04 12:43:48 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-04 12:43:48 +0100 |
commit | c003a40f545e0879c3d1ec74dadae233455f41a7 (patch) | |
tree | 223f3842e0fc3421aff176bf6f87f9d19d8ed076 /pages | |
parent | 3f39da20f538407cced435a0bcc084bd46ed0979 (diff) | |
download | puszcza-c003a40f545e0879c3d1ec74dadae233455f41a7.tar.gz puszcza-c003a40f545e0879c3d1ec74dadae233455f41a7.zip |
Add postlist to oboz
Diffstat (limited to 'pages')
-rw-r--r-- | pages/oboz/2020.vue | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/pages/oboz/2020.vue b/pages/oboz/2020.vue index 2605b75..335a24b 100644 --- a/pages/oboz/2020.vue +++ b/pages/oboz/2020.vue @@ -20,20 +20,27 @@ /> </div> </div> + <h3 style="margin-top: 10vh">Tutaj niedługo znajdziesz relacje z obozu</h3> + <pure-post-list loading /> </section> </template> -<style scoped> -.oboz { - margin-top: 40px; +<script> +import PurePostList from '~/components/Posts/PostList/PurePostList' +export default { + components: { + PurePostList + } } +</script> +<style scoped> .header { display: flex; flex-direction: column; justify-content: center; align-items: center; - margin: 20px 0; + margin: 15vmax 0; } h1 { |