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 | a9ad089e8448c389a0af6081a61682fcd2f1b33f (patch) | |
tree | d5e3afa16f03f2de85e60dfbb7ddf7b05969ce92 /FrontEnd/src | |
parent | 180073b86867ad4eae06dec5671d8c64a9c76378 (diff) | |
download | timeline-a9ad089e8448c389a0af6081a61682fcd2f1b33f.tar.gz timeline-a9ad089e8448c389a0af6081a61682fcd2f1b33f.tar.bz2 timeline-a9ad089e8448c389a0af6081a61682fcd2f1b33f.zip |
feat: Add color transition to app bar.
Diffstat (limited to 'FrontEnd/src')
-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)
|