diff options
author | crupest <crupest@outlook.com> | 2021-05-08 10:47:46 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-05-08 10:47:46 +0800 |
commit | f3262e95a04127894a621272840192553cec68ba (patch) | |
tree | 2ac2bc4b32170baf609776d1904e2b2bee8ad8cf /FrontEnd | |
parent | c381b56b4a74c7febf82d9b6de9e26ddd59f6605 (diff) | |
download | timeline-f3262e95a04127894a621272840192553cec68ba.tar.gz timeline-f3262e95a04127894a621272840192553cec68ba.tar.bz2 timeline-f3262e95a04127894a621272840192553cec68ba.zip |
feat: Add color transition to app bar.
Diffstat (limited to 'FrontEnd')
-rw-r--r-- | FrontEnd/src/app/views/common/common.sass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/FrontEnd/src/app/views/common/common.sass b/FrontEnd/src/app/views/common/common.sass index 1a49357c..32d1d1e9 100644 --- a/FrontEnd/src/app/views/common/common.sass +++ b/FrontEnd/src/app/views/common/common.sass @@ -45,6 +45,8 @@ background-color: var(--tl-primary-color)
+ transition: background-color 1s
+
a
color: var(--tl-text-on-primary-inactive-color)
text-decoration: none
@@ -86,7 +88,7 @@ right: 0
transform-origin: top
- transition: transform 0.6s
+ transition: transform 0.6s, background-color 1s
background-color: var(--tl-primary-color)
|