diff options
author | Ms Kimsible <1877318+kimsible@users.noreply.github.com> | 2021-08-26 08:22:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-26 08:22:33 +0200 |
commit | 7dca45f99db58d9bb3423a3765aaee68c69bc9f2 (patch) | |
tree | 6bdf45c304a58dca51a8e856a8d35238e7bc9bbb /client/src/app/modal/account-setup-modal.component.scss | |
parent | 8729a87024fc837f7dd6f13afeec90cf6dda1c06 (diff) | |
download | PeerTube-7dca45f99db58d9bb3423a3765aaee68c69bc9f2.tar.gz PeerTube-7dca45f99db58d9bb3423a3765aaee68c69bc9f2.tar.zst PeerTube-7dca45f99db58d9bb3423a3765aaee68c69bc9f2.zip |
Inform user to fill account profile and channels (#4352)
* Add account-setup modal when login
* Add channels-setup alert into my-channels, my-playlists and upload page
Co-authored-by: Ms Kimsible <kimsible@users.noreply.github.com>
Diffstat (limited to 'client/src/app/modal/account-setup-modal.component.scss')
-rw-r--r-- | client/src/app/modal/account-setup-modal.component.scss | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/client/src/app/modal/account-setup-modal.component.scss b/client/src/app/modal/account-setup-modal.component.scss new file mode 100644 index 000000000..405f29d65 --- /dev/null +++ b/client/src/app/modal/account-setup-modal.component.scss | |||
@@ -0,0 +1,31 @@ | |||
1 | @use '_mixins' as *; | ||
2 | @use '_variables' as *; | ||
3 | |||
4 | .modal-body { | ||
5 | font-size: 15px; | ||
6 | display: flex; | ||
7 | flex-direction: column; | ||
8 | align-items: center; | ||
9 | justify-content: center; | ||
10 | } | ||
11 | |||
12 | .mascot-fw { | ||
13 | width: 170px; | ||
14 | } | ||
15 | |||
16 | .mascot { | ||
17 | @include margin-right(2rem); | ||
18 | |||
19 | display: block; | ||
20 | min-width: 170px; | ||
21 | } | ||
22 | |||
23 | .subtitle { | ||
24 | font-weight: $font-semibold; | ||
25 | margin-bottom: 10px; | ||
26 | font-size: 16px; | ||
27 | } | ||
28 | |||
29 | li { | ||
30 | margin-bottom: 10px; | ||
31 | } | ||