diff --git a/.gitignore b/.gitignore index 2a52fb5..142f292 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ .cache dist public/api +public/imgs # Node dependencies node_modules diff --git a/app.vue b/app.vue index 97b609c..acd90ed 100644 --- a/app.vue +++ b/app.vue @@ -40,10 +40,13 @@ margin: 0; box-sizing: border-box; font-family: 'Latitude', serif; - font-size: 1.1rem; + font-size: 1rem; font-weight: normal; text-decoration: none; color: #0e312f; + @media screen and (min-width: 800px) { + font-size: 1.1rem; + } } body { diff --git a/assets/images/instagram.png b/assets/images/instagram.png index 5289946..25156b9 100644 Binary files a/assets/images/instagram.png and b/assets/images/instagram.png differ diff --git a/components/Header.vue b/components/Header.vue index 09f96cc..19b94a1 100644 --- a/components/Header.vue +++ b/components/Header.vue @@ -131,6 +131,7 @@ export default { width: 3rem; z-index: 1; img { + padding-top: 10px; width: 100%; transform: rotate(0deg); transition: transform 0.3s ease-out; @@ -156,6 +157,9 @@ export default { } } } + > div > a > img { + padding: 10px; + } } } \ No newline at end of file diff --git a/components/Projects.vue b/components/Projects.vue index 02bfd82..aae282f 100644 --- a/components/Projects.vue +++ b/components/Projects.vue @@ -1,9 +1,9 @@