diff --git a/firebase.md b/firebase.md
index ed48195..761ced1 100644
--- a/firebase.md
+++ b/firebase.md
@@ -660,11 +660,7 @@ You would refer to this form with `this.$refs.form`.
"
>
- {{
- field.showIconData
- ? field.appendIconShow
- : field.appendIconHide
- }}
+ {{ field.showIconData ? field.appendIconShow : field.appendIconHide }}
@@ -746,3 +742,15 @@ async submit() {
```
Here we are checking the validity of the form, and enabling/disabling the loading prop based on whether or not the form is correct.
+
+### Hints
+
+The following is a codepen showing how you can dynamically populate a hint to show if the form is submitted with empty values. This can be useful if don't want to show an error message, but you still want the form to provide feedback on what to fill in.
+
+
+
+## Triangle backgrounds
+
+### Designs
+
+Dual image:
diff --git a/src/components/Appbar.vue b/src/components/Appbar.vue
index 75b723c..cf5b646 100644
--- a/src/components/Appbar.vue
+++ b/src/components/Appbar.vue
@@ -1,20 +1,5 @@
-
-
import(/* webpackChunkName: "hello" */ "../components/HelloWorld.vue")
+ },
+ {
+ path: "/triangle",
+ name: "Triangle",
+ component: () =>
+ import(/* webpackChunkName: "triangle" */ "../views/Triangle.vue")
}
];
diff --git a/src/scss/_variables.scss b/src/scss/variables.scss
similarity index 98%
rename from src/scss/_variables.scss
rename to src/scss/variables.scss
index 34ecc18..16794a4 100644
--- a/src/scss/_variables.scss
+++ b/src/scss/variables.scss
@@ -130,6 +130,8 @@ $Gilroy-BoldItalic: "Gilroy-BoldItalic", sans-serif !default;
}
}
+$body-font-family: $Gilroy-Regular !important;
+
// Change default font colour
$mainColor: #323947;
@@ -139,4 +141,3 @@ $mainColor: #323947;
.theme--light.v-sheet {
color: $mainColor !important;
}
-
diff --git a/src/views/Triangle.vue b/src/views/Triangle.vue
new file mode 100644
index 0000000..02ad5fe
--- /dev/null
+++ b/src/views/Triangle.vue
@@ -0,0 +1,42 @@
+
+
+
+
+ Outside In
+
+
+
+
+
+ OutsideOutsides
+
+
+
+
+ OutsideOutside
+
+
+
+
+
+
+
+
diff --git a/src/views/forms/LoginForm.vue b/src/views/forms/LoginForm.vue
index cbe8daa..308f129 100644
--- a/src/views/forms/LoginForm.vue
+++ b/src/views/forms/LoginForm.vue
@@ -70,7 +70,6 @@