diff options
author | Chocobozzz <me@florianbigard.com> | 2019-02-20 10:16:04 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-02-20 10:16:04 +0100 |
commit | b28e4e5e080646ec67363cb0a16c9bd97ccffb35 (patch) | |
tree | a1af72cd2b0c7138bcaa4cb5f44e5db6d168e05d /client/src/app/menu/avatar-notification.component.scss | |
parent | 28c8e63e55cad24b024fc1d05aa1cfc0257434e5 (diff) | |
download | PeerTube-b28e4e5e080646ec67363cb0a16c9bd97ccffb35.tar.gz PeerTube-b28e4e5e080646ec67363cb0a16c9bd97ccffb35.tar.zst PeerTube-b28e4e5e080646ec67363cb0a16c9bd97ccffb35.zip |
Add user notification animation
Diffstat (limited to 'client/src/app/menu/avatar-notification.component.scss')
-rw-r--r-- | client/src/app/menu/avatar-notification.component.scss | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/client/src/app/menu/avatar-notification.component.scss b/client/src/app/menu/avatar-notification.component.scss index e785db788..201668b6e 100644 --- a/client/src/app/menu/avatar-notification.component.scss +++ b/client/src/app/menu/avatar-notification.component.scss | |||
@@ -9,11 +9,27 @@ | |||
9 | padding: 0; | 9 | padding: 0; |
10 | font-size: 14px; | 10 | font-size: 14px; |
11 | font-family: $main-fonts; | 11 | font-family: $main-fonts; |
12 | overflow-y: auto; | 12 | overflow-y: scroll; |
13 | max-height: 500px; | ||
14 | width: 400px; | 13 | width: 400px; |
15 | box-shadow: 0 6px 14px rgba(0, 0, 0, 0.30); | 14 | box-shadow: 0 6px 14px rgba(0, 0, 0, 0.30); |
16 | 15 | ||
16 | .loader { | ||
17 | display: flex; | ||
18 | align-items: center; | ||
19 | justify-content: center; | ||
20 | |||
21 | padding: 5px 0; | ||
22 | } | ||
23 | |||
24 | .content { | ||
25 | max-height: 150px; | ||
26 | transition: max-height 0.15s ease-out; | ||
27 | |||
28 | &.loaded { | ||
29 | max-height: 500px; | ||
30 | } | ||
31 | } | ||
32 | |||
17 | .notifications-header { | 33 | .notifications-header { |
18 | display: flex; | 34 | display: flex; |
19 | justify-content: space-between; | 35 | justify-content: space-between; |