diff --git a/public/favicon.png b/public/favicon.png index b78febe..f93eb5b 100644 Binary files a/public/favicon.png and b/public/favicon.png differ diff --git a/public/hamstr_2.png b/public/hamstr_2.png deleted file mode 100644 index 4ef617b..0000000 Binary files a/public/hamstr_2.png and /dev/null differ diff --git a/public/icons/favicon-128x128.png b/public/icons/favicon-128x128.png index 4d4ec17..fa68fcd 100644 Binary files a/public/icons/favicon-128x128.png and b/public/icons/favicon-128x128.png differ diff --git a/public/icons/favicon-256x256.png b/public/icons/favicon-256x256.png index 301a986..c124640 100644 Binary files a/public/icons/favicon-256x256.png and b/public/icons/favicon-256x256.png differ diff --git a/public/icons/favicon-32x32.png b/public/icons/favicon-32x32.png index b78febe..f93eb5b 100644 Binary files a/public/icons/favicon-32x32.png and b/public/icons/favicon-32x32.png differ diff --git a/public/icons/favicon-64x64.png b/public/icons/favicon-64x64.png new file mode 100644 index 0000000..2fefd532 Binary files /dev/null and b/public/icons/favicon-64x64.png differ diff --git a/public/icons/hamstr_2-128x128.png b/public/icons/hamstr_2-128x128.png deleted file mode 100644 index 39b34b8..0000000 Binary files a/public/icons/hamstr_2-128x128.png and /dev/null differ diff --git a/public/icons/hamstr_2-64x64.png b/public/icons/hamstr_2-64x64.png deleted file mode 100644 index 4ef617b..0000000 Binary files a/public/icons/hamstr_2-64x64.png and /dev/null differ diff --git a/public/icons/hamstr_3-64x64.png b/public/icons/hamstr_3-64x64.png deleted file mode 100644 index 53ba7de..0000000 Binary files a/public/icons/hamstr_3-64x64.png and /dev/null differ diff --git a/quasar.config.js b/quasar.config.js index 6c66153..b4d1b0f 100644 --- a/quasar.config.js +++ b/quasar.config.js @@ -193,6 +193,11 @@ module.exports = configure(function (ctx) { sizes: '32x32', type: 'image/png', }, + { + src: 'icons/favicon-64x64.png', + sizes: '64x64', + type: 'image/png', + }, { src: 'icons/favicon-128x128.png', sizes: '128x128', diff --git a/src/assets/theme/colors.scss b/src/assets/theme/colors.scss index 023e1b7..8b98cf9 100644 --- a/src/assets/theme/colors.scss +++ b/src/assets/theme/colors.scss @@ -1,4 +1,6 @@ -$color-blue: #1DA1F2; +//$color-primary: #1DA1F2; +$color-primary: #EE517D; +//$color-primary: #F9A82C; $color-black: #14171A; $color-dark-gray: #657786; $color-light-gray: #AAB8C2; diff --git a/src/components/BasePostEntry.vue b/src/components/BasePostEntry.vue index 14666ea..b7221c2 100644 --- a/src/components/BasePostEntry.vue +++ b/src/components/BasePostEntry.vue @@ -1081,17 +1081,17 @@ export default { padding: 5px; svg { width: 100%; - fill: $color-blue + fill: $color-primary } &:hover { - background-color: rgba($color: $color-blue, $alpha: 0.3); + background-color: rgba($color: $color-primary, $alpha: 0.3); } } } &-submit { button { cursor: pointer; - background-color: $color-blue; + background-color: $color-primary; color: #fff; font-weight: bold; padding: 10px 16px; @@ -1100,7 +1100,7 @@ export default { border-radius: 9999px; &:disabled{ cursor: no-drop; - background-color: rgba($color: $color-blue, $alpha: 0.3); + background-color: rgba($color: $color-primary, $alpha: 0.3); color: rgba($color: #fff, $alpha: 0.3); } } diff --git a/src/components/CreatePost/CreatePost.vue b/src/components/CreatePost/CreatePost.vue index df2ed39..58ca038 100644 --- a/src/components/CreatePost/CreatePost.vue +++ b/src/components/CreatePost/CreatePost.vue @@ -1075,17 +1075,17 @@ export default { padding: 5px; svg { width: 100%; - fill: $color-blue + fill: $color-primary } &:hover { - background-color: rgba($color: $color-blue, $alpha: 0.3); + background-color: rgba($color: $color-primary, $alpha: 0.3); } } } &-submit { button { cursor: pointer; - background-color: $color-blue; + background-color: $color-primary; color: #fff; font-weight: bold; padding: 10px 16px; @@ -1094,7 +1094,7 @@ export default { border-radius: 9999px; &:disabled{ cursor: no-drop; - background-color: rgba($color: $color-blue, $alpha: 0.3); + background-color: rgba($color: $color-primary, $alpha: 0.3); color: rgba($color: #fff, $alpha: 0.3); } } diff --git a/src/components/CreatePost/EmojiPicker.vue b/src/components/CreatePost/EmojiPicker.vue index 45b2cb8..5729fb3 100644 --- a/src/components/CreatePost/EmojiPicker.vue +++ b/src/components/CreatePost/EmojiPicker.vue @@ -5,6 +5,7 @@ :show-skin-tones="true" emoji="thumbsup" title="" + color="#ee517d" @select="onSelect" /> diff --git a/src/components/CreatePost/PostEditor.vue b/src/components/CreatePost/PostEditor.vue index e8d7cef..ff6ee46 100644 --- a/src/components/CreatePost/PostEditor.vue +++ b/src/components/CreatePost/PostEditor.vue @@ -34,9 +34,7 @@
- +
@@ -112,7 +110,7 @@ export default { @import "assets/theme/colors.scss"; .post-editor { - padding: 10px 1rem 0; + padding: 0 1rem; display: flex; width: 100%; border-bottom: $border-dark; @@ -195,17 +193,17 @@ export default { padding: 5px; svg { width: 100%; - fill: $color-blue + fill: $color-primary } &:hover { - background-color: rgba($color: $color-blue, $alpha: 0.3); + background-color: rgba($color: $color-primary, $alpha: 0.3); } } } &-submit { button { cursor: pointer; - background-color: $color-blue; + background-color: $color-primary; color: #fff; font-weight: bold; padding: 10px 16px; @@ -214,7 +212,7 @@ export default { border-radius: 9999px; &:disabled{ cursor: no-drop; - background-color: rgba($color: $color-blue, $alpha: 0.3); + background-color: rgba($color: $color-primary, $alpha: 0.3); color: rgba($color: #fff, $alpha: 0.3); } } diff --git a/src/components/MainMenu/Logo.vue b/src/components/MainMenu/Logo.vue new file mode 100644 index 0000000..41739d6 --- /dev/null +++ b/src/components/MainMenu/Logo.vue @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/MainMenu/index.vue b/src/components/MainMenu/MainMenu.vue similarity index 87% rename from src/components/MainMenu/index.vue rename to src/components/MainMenu/MainMenu.vue index d1dc931..f81f8f2 100644 --- a/src/components/MainMenu/index.vue +++ b/src/components/MainMenu/MainMenu.vue @@ -3,8 +3,7 @@