diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-11 12:33:25 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-08-11 12:33:25 +0200 |
commit | a76e153bf1390237ab75969f40df3abfe6da0a75 (patch) | |
tree | c8ad3af38025bce050ae8ff0401bac885fb11b5f /src/App.vue | |
parent | c6484bfa2c2952c3ddecea79380f5bb06fa60ad9 (diff) | |
download | puszcza-a76e153bf1390237ab75969f40df3abfe6da0a75.tar.gz puszcza-a76e153bf1390237ab75969f40df3abfe6da0a75.zip |
Setup
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/App.vue b/src/App.vue index fcc5662..ac76592 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,28 +1,27 @@ <template> <div id="app"> - <img alt="Vue logo" src="./assets/logo.png"> - <HelloWorld msg="Welcome to Your Vue.js App"/> + <h1>19 PDH Puszcza</h1> + <img alt="Work in progress" src="./assets/wip.png" /> + <h3>Strona w trakcie budowy</h3> </div> </template> <script> -import HelloWorld from './components/HelloWorld.vue' - export default { - name: 'app', - components: { - HelloWorld - } -} + name: "app", + components: {} +}; </script> <style> +@import url("https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap"); + #app { - font-family: 'Avenir', Helvetica, Arial, sans-serif; + font-family: "Roboto Slab", serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; - color: #2c3e50; + color: #181818; margin-top: 60px; } </style> |