diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..951394a
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,13 @@
+.nuxt/**
+assets/**
+dist/**
+node_modules/**
+plugins/ga.js
+static/**
+submodules/**
+
+.prettierignore
+.git*
+Makefile
+yarn.lock
+
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 0000000..963354f
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,3 @@
+{
+ "printWidth": 120
+}
diff --git a/.vscode/settings.json b/.vscode/settings.json
index c0e065c..1273088 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -3,6 +3,6 @@
"**/.nuxt/": true,
"**/dist/": true,
"**/node_modules/": true,
- "submodules/": true,
+ "submodules/": true
}
}
diff --git a/README.md b/README.md
index 2a4824f..13b079f 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,3 @@
-gardev.com
-==========
+# gardev.com
The page sitting at [gar.dev](https://gar.dev) and [gardev.com](https://gardev.com)
diff --git a/assets/styles/main.scss b/assets/styles/main.scss
index ad27e01..868d4a2 100644
--- a/assets/styles/main.scss
+++ b/assets/styles/main.scss
@@ -7,8 +7,10 @@ Dark Orange: #B26009
Light Gray: #f5f5f5
*/
-html, body {
- margin: 0; padding: 0;
+html,
+body {
+ margin: 0;
+ padding: 0;
font-family: "Verdana", sans-serif;
font-size: 100%;
@@ -27,7 +29,7 @@ h1 {
margin-top: 3em;
margin-bottom: 0;
font-size: 2em;
- color: #0085B2;
+ color: #0085b2;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
}
@@ -45,10 +47,7 @@ input[type="button"] {
outline: 0 !important;
}
-
-@media only screen
-and (min-device-width : 320px)
-and (max-device-width : 480px) {
+@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
main {
width: 320px;
}
diff --git a/components/TicTacToe/Board/Board.vue b/components/TicTacToe/Board/Board.vue
index 78bc5a8..24efc6d 100644
--- a/components/TicTacToe/Board/Board.vue
+++ b/components/TicTacToe/Board/Board.vue
@@ -9,9 +9,9 @@
-