diff --git a/.eslintrc b/.eslintrc
index c76cf54..6fee5fa 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -3,5 +3,8 @@
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
- ]
-}
\ No newline at end of file
+ ],
+ "rules": {
+ max-len: ["error", { "code": 200 }]
+ },
+}
diff --git a/public/index.html b/public/index.html
index 033af57..9ff431d 100644
--- a/public/index.html
+++ b/public/index.html
@@ -5,6 +5,7 @@
+
vue_tachyons
diff --git a/src/App.vue b/src/App.vue
index 9728085..837b362 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,8 +1,8 @@
- Home
- About
+ Home
+ About
@@ -50,4 +50,19 @@ export default {
transform: translateX(10px);
opacity: 0;
}
+
+.bg-grad-blue {
+ background-image: linear-gradient(-208deg, #86C3D0 0%, #4E90A3 66%);
+}
+
+.bg-grad-green {
+ background-image: linear-gradient(to top right,#41b782,#86d169);
+}
+
+*:focus {
+ outline-style:none;
+ box-shadow:none;
+ border-color:transparent;
+}
+
diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue
index 587b123..d831356 100644
--- a/src/components/NavBar.vue
+++ b/src/components/NavBar.vue
@@ -1,9 +1,10 @@
-