about summary refs log tree commit diff
path: root/src/components
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-08-13 11:20:02 +0200
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2019-08-13 11:20:02 +0200
commit91baeba409e8480d1762c3aa8edfb121cff062d5 (patch)
tree739e7efbe30aa6d1da67c8456fe3beefc454ed36 /src/components
parent71abfc6cdfd94ff403575efcbd80f90dac402a12 (diff)
downloadpuszcza-91baeba409e8480d1762c3aa8edfb121cff062d5.tar.gz
puszcza-91baeba409e8480d1762c3aa8edfb121cff062d5.zip
Move asstes to public
Diffstat (limited to 'src/components')
-rw-r--r--src/components/NavBar.vue9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue
index 0cae182..6497804 100644
--- a/src/components/NavBar.vue
+++ b/src/components/NavBar.vue
@@ -1,7 +1,7 @@
 <template>
   <nav class="navbar">
     <div class="title">
-      <img class="logo" :src="logoPath" />
+      <img v-if="logo" class="logo" :src="logo" />
       <router-link class="title-name" to="/">{{ title }}</router-link>
     </div>
     <div class="space"></div>
@@ -31,7 +31,7 @@ export default {
     routes: Array,
     externalRoutes: Array,
     title: String,
-    logoPath: String
+    logo: String
   },
   data: function() {
     return {
@@ -49,6 +49,11 @@ export default {
 
 <style scoped>
 .navbar {
+  font-family: "Roboto Slab", serif;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+  color: #181818;
+
   box-sizing: border-box;
   width: 100vw;
   height: 80px;