diff options
-rw-r--r-- | public/files/Karta_próby_na_sprawność.pdf | bin | 0 -> 82876 bytes | |||
-rw-r--r-- | public/files/Próba_Harcerza.pdf | bin | 0 -> 33183 bytes | |||
-rw-r--r-- | src/App.vue | 10 | ||||
-rw-r--r-- | src/components/NavBar.vue | 2 | ||||
-rw-r--r-- | src/views/DownloadView.vue | 19 |
5 files changed, 21 insertions, 10 deletions
diff --git a/public/files/Karta_próby_na_sprawność.pdf b/public/files/Karta_próby_na_sprawność.pdf new file mode 100644 index 0000000..7081e3d --- /dev/null +++ b/public/files/Karta_próby_na_sprawność.pdf Binary files differdiff --git a/public/files/Próba_Harcerza.pdf b/public/files/Próba_Harcerza.pdf new file mode 100644 index 0000000..8248e20 --- /dev/null +++ b/public/files/Próba_Harcerza.pdf Binary files differdiff --git a/src/App.vue b/src/App.vue index 5526676..0497a35 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,11 +1,7 @@ <template> <div id="app"> - <NavBar - :routes="routes" - :externalRoutes="externalRoutes" - title="19 PDH Puszcza" - logo="assets/krajka-logo.svg" - /> + <NavBar :routes="routes" :externalRoutes="externalRoutes" title="19 PDH Puszcza" /> + <!-- logo="assets/krajka-logo.svg" --> <router-view></router-view> </div> </template> @@ -20,7 +16,7 @@ export default { data() { return { routes, - externalRoutes + externalRoutes: [] }; } }; diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index ac114f9..11503c7 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -60,7 +60,6 @@ export default { }, methods: { toggleMenu() { - console.log("a"); this.menuCollapsed = !this.menuCollapsed; }, linksClick() { @@ -114,6 +113,7 @@ export default { .links { display: flex; flex-direction: row; + padding: 0; } .logo { diff --git a/src/views/DownloadView.vue b/src/views/DownloadView.vue index 9bb3f4f..dd6b507 100644 --- a/src/views/DownloadView.vue +++ b/src/views/DownloadView.vue @@ -1,3 +1,18 @@ <template> - <h1>Do pobrania</h1> -</template> \ No newline at end of file + <div class="container"> + <h1>Do pobrania</h1> + <a class="link" href="/files/Karta_próby_na_sprawność.pdf">Karta próby na sprawność</a> + <a class="link" href="/files/Próba_Harcerza.pdf">Próba Harcerza</a> + </div> +</template> + +<style scoped> +.container { + display: flex; + flex-direction: column; +} + +.link { + margin: 5px; +} +</style> \ No newline at end of file |