diff --git a/.eslintrc.js b/.eslintrc.js index 6c18c60..f216217 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -14,7 +14,8 @@ module.exports = { "@moritzruth/eslint-config/vue" ], rules: { - "no-unused-vars": "warn" + "no-unused-vars": "warn", + "vue/no-unused-components": "warn" }, "settings": { "import/resolver": { diff --git a/assets/icons/email.svg b/assets/icons/email.svg index 2609b66..c589cf1 100644 --- a/assets/icons/email.svg +++ b/assets/icons/email.svg @@ -1 +1 @@ - + diff --git a/assets/icons/instagram.svg b/assets/icons/instagram.svg index a117827..89c17d3 100644 --- a/assets/icons/instagram.svg +++ b/assets/icons/instagram.svg @@ -1 +1 @@ - + diff --git a/assets/icons/arrow_right.svg b/assets/icons/pointer-right.svg similarity index 100% rename from assets/icons/arrow_right.svg rename to assets/icons/pointer-right.svg diff --git a/assets/icons/twitter.svg b/assets/icons/twitter.svg index 23a6ddf..323d316 100644 --- a/assets/icons/twitter.svg +++ b/assets/icons/twitter.svg @@ -1 +1 @@ - + diff --git a/assets/media/MyLogo.svg b/assets/media/MyLogo.svg deleted file mode 100644 index 7f94f41..0000000 --- a/assets/media/MyLogo.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/assets/styles/_colors.scss b/assets/styles/_colors.scss index 54c3a82..ecbb2f7 100644 --- a/assets/styles/_colors.scss +++ b/assets/styles/_colors.scss @@ -4,3 +4,5 @@ $pink: #BB2081; $pink-c: white; $blue: #14AAD8; $blue-c: white; +$green: #00ff64; +$green-c: black; diff --git a/assets/styles/_content.scss b/assets/styles/_content.scss index f3bb0b1..2317dfb 100644 --- a/assets/styles/_content.scss +++ b/assets/styles/_content.scss @@ -1,5 +1,5 @@ @mixin content($padding: 20px) { - $width: 800px; + $width: 1000px; max-width: calc(100vw - #{$padding} * 2); width: $width; diff --git a/assets/styles/formatted/_link.scss b/assets/styles/formatted/_link.scss index e9e9a7a..3f9b8d3 100644 --- a/assets/styles/formatted/_link.scss +++ b/assets/styles/formatted/_link.scss @@ -1,11 +1,13 @@ +@use "../colors"; + %link { - color: var(--colors-link); + color: colors.$blue; text-decoration: none; transition: 100ms linear opacity; opacity: 1; &:hover { - opacity: 0.8; + opacity: 0.9; } } diff --git a/assets/styles/global.scss b/assets/styles/global.scss index 151c0dc..60b1739 100644 --- a/assets/styles/global.scss +++ b/assets/styles/global.scss @@ -38,7 +38,7 @@ html, body { @include content.content(); } -.link { +.underlined-link { position: relative; text-decoration: none; diff --git a/components/AnimatedLogo.vue b/components/AnimatedLogo.vue index c8ecaef..9c819ab 100644 --- a/components/AnimatedLogo.vue +++ b/components/AnimatedLogo.vue @@ -33,28 +33,34 @@ + + diff --git a/components/MyFooter.vue b/components/MyFooter.vue index 7e4f93c..09f9836 100644 --- a/components/MyFooter.vue +++ b/components/MyFooter.vue @@ -2,7 +2,7 @@