about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-07-26 12:14:52 +0200
committerGitHub <noreply@github.com>2020-07-26 12:14:52 +0200
commit563b1c8b79b81e46a65827293d4e1fc59f31e875 (patch)
tree37c927e810e38b4dc542b07123c8573aa8856371
parent2cb5d0a651c14cfd216119be22760a07650b4ab7 (diff)
parent065f95dfdfd2570f0ed84866d04417c678dc433a (diff)
downloadpuszcza-563b1c8b79b81e46a65827293d4e1fc59f31e875.tar.gz
puszcza-563b1c8b79b81e46a65827293d4e1fc59f31e875.zip
Merge pull request #40 from 19pdh/order
Obóz pierwszy
-rw-r--r--components/ObozWidget.vue3
-rw-r--r--components/Posts/PostList/PurePostList.vue2
-rw-r--r--pages/index.vue4
3 files changed, 4 insertions, 5 deletions
diff --git a/components/ObozWidget.vue b/components/ObozWidget.vue
index 084feab..69a0ec5 100644
--- a/components/ObozWidget.vue
+++ b/components/ObozWidget.vue
@@ -20,8 +20,7 @@ export default {
 .oboz-widget {
   width: 100%;
 
-  margin-top: 50px;
-  padding: 80px 20%;
+  padding: 160px 20%;
 
   background-image: url('/assets/oboz.jpg');
   background-size: cover;
diff --git a/components/Posts/PostList/PurePostList.vue b/components/Posts/PostList/PurePostList.vue
index cdbaffc..7281f21 100644
--- a/components/Posts/PostList/PurePostList.vue
+++ b/components/Posts/PostList/PurePostList.vue
@@ -44,7 +44,7 @@ export default {
   width: 100%;
   max-width: 900px;
   justify-content: center;
-  margin: 0 auto;
+  margin: 15px auto;
 }
 
 .post-list-container {
diff --git a/pages/index.vue b/pages/index.vue
index a801653..2f93914 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -1,11 +1,11 @@
 <template>
   <div>
-    <join-us />
+    <oboz-widget />
     <div style="width: 100%; padding-top: 50px">
       <h1>Ostatnie wpisy z kroniki</h1>
       <post-list :posts="posts" :max="4" />
     </div>
-    <oboz-widget />
+    <join-us />
     <facebook-feed />
   </div>
 </template>