diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-25 17:41:34 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-25 17:41:34 +0100 |
commit | 5d7fb66aac4fdb09ab9d1264e194529e9636025b (patch) | |
tree | 9ab9cf4489be62c0676d9a0b08714a2dd66acc32 /pages | |
parent | afd66e3652de73529ff43607ff41dad1a90cf351 (diff) | |
download | puszcza-5d7fb66aac4fdb09ab9d1264e194529e9636025b.tar.gz puszcza-5d7fb66aac4fdb09ab9d1264e194529e9636025b.zip |
Code split
Diffstat (limited to 'pages')
-rw-r--r-- | pages/oboz/2020.vue | 54 |
1 files changed, 9 insertions, 45 deletions
diff --git a/pages/oboz/2020.vue b/pages/oboz/2020.vue index af9b3d4..e80259d 100644 --- a/pages/oboz/2020.vue +++ b/pages/oboz/2020.vue @@ -11,41 +11,24 @@ <h3>7 PDH Watra</h3> </div> </div> - <no-ssr> - <div class="countdown"> - Do obozu zostało: <span>{{ days }} dni</span> - </div> - </no-ssr> - <div class="mapouter"> - <div class="gmap_canvas"> - <iframe - id="gmap_canvas" - src="https://maps.google.com/maps?q=Jezioro%20Spore&t=&z=13&ie=UTF8&iwloc=&output=embed" - frameborder="0" - scrolling="no" - marginheight="0" - marginwidth="0" - /> - </div> - </div> + <day-countdown text="Do obozu zostało:" :end-date="new Date(2020, 6, 7)" /> + <camp-map + src="https://maps.google.com/maps?q=Jezioro%20Spore&t=&z=13&ie=UTF8&iwloc=&output=embed" + /> <h3 style="margin-top: 10vh">Tutaj niedługo znajdziesz relacje z obozu</h3> - <pure-post-list loading :posts="[]" /> - <span class="fether" /> + <pure-post-list loading :posts="[]" style="margin-bottom: 30px" /> </section> </template> <script> import PurePostList from '~/components/Posts/PostList/PurePostList' +import DayCountdown from '~/components/DayCountdown' +import CampMap from '~/components/CampMap' export default { components: { PurePostList, - }, - computed: { - days() { - let now = new Date(Date.now()) - let oboz = new Date(2020, 7, 6) - return Math.round((oboz.getTime() - now.getTime()) / 86400000) - 30 - }, + DayCountdown, + CampMap, }, } </script> @@ -80,17 +63,6 @@ h1 { margin: 10px; } -.countdown { - background: #ffffff; - box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); - padding: 20px; - margin: 50px 10px; -} - -.countdown span { - font-weight: 600; -} - @media (max-width: 480px) { .troops { flex-direction: column; @@ -105,14 +77,6 @@ h1 { } } -.mapouter, -.gmap_canvas, -#gmap_canvas { - width: 100%; - height: 50vh; - max-height: 300px; -} - .oboz::after { width: 100px; height: 200px; |