From c454d9c9e0a2a53ea3cf957f8fc2029d73d7a26c Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Tue, 22 Oct 2019 23:07:21 +0200 Subject: [PATCH] Misc cleanup, more definitions of color with scss variables and added a lot of color transitions for when switching theme color. --- src/App.vue | 4 +++ src/components/LandingBanner.vue | 8 ++++-- src/components/MoviesListItem.vue | 6 +++-- src/components/Navigation.vue | 23 +++++++++------- src/components/Profile.vue | 14 +++++++--- src/components/Register.vue | 4 --- src/components/SearchInput.vue | 6 ++++- src/components/Settings.vue | 13 +++++---- src/components/Signin.vue | 4 +-- src/components/TorrentList.vue | 2 +- src/components/ui/Loader.vue | 2 +- src/components/ui/SeasonedButton.vue | 2 +- src/components/ui/SeasonedInput.vue | 4 +-- src/components/ui/SeasonedMessages.vue | 37 +++++++++----------------- 14 files changed, 68 insertions(+), 61 deletions(-) diff --git a/src/App.vue b/src/App.vue index 8e398a0..6615946 100644 --- a/src/App.vue +++ b/src/App.vue @@ -97,10 +97,14 @@ body{ line-height: 1.6; background: $background-color; color: $text-color; + transition: background-color .5s ease, color .5s ease; &.hidden{ overflow: hidden; } } +h1,h2,h3 { + transition: color .5s ease; +} a:any-link { color: inherit; } diff --git a/src/components/LandingBanner.vue b/src/components/LandingBanner.vue index d4920ef..bcaa3dd 100644 --- a/src/components/LandingBanner.vue +++ b/src/components/LandingBanner.vue @@ -26,7 +26,6 @@ export default { } } } -