diff options
author | Chocobozzz <me@florianbigard.com> | 2021-03-29 15:56:01 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-03-31 09:05:51 +0200 |
commit | 100d9ce23bb7c5186132607e4c444f9cba5002a4 (patch) | |
tree | 2028938d90321c6d2454c4aea2e6f24e53393a4a /client/src/sass | |
parent | 900f7820814b95b07ef0bcac04036a95abfbe060 (diff) | |
download | PeerTube-100d9ce23bb7c5186132607e4c444f9cba5002a4.tar.gz PeerTube-100d9ce23bb7c5186132607e4c444f9cba5002a4.tar.zst PeerTube-100d9ce23bb7c5186132607e4c444f9cba5002a4.zip |
Add support button in channel page
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/application.scss | 20 | ||||
-rw-r--r-- | client/src/sass/classes.scss | 22 |
2 files changed, 24 insertions, 18 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 0a92afef3..f4c3d86a8 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -15,6 +15,8 @@ $assets-path: '../../assets/'; | |||
15 | @import './primeng-custom'; | 15 | @import './primeng-custom'; |
16 | @import './ng-select.scss'; | 16 | @import './ng-select.scss'; |
17 | 17 | ||
18 | @import './classes.scss'; | ||
19 | |||
18 | [hidden] { | 20 | [hidden] { |
19 | display: none !important; | 21 | display: none !important; |
20 | } | 22 | } |
@@ -465,21 +467,3 @@ ngx-loading-bar { | |||
465 | } | 467 | } |
466 | } | 468 | } |
467 | } | 469 | } |
468 | |||
469 | // Utils | ||
470 | |||
471 | .peertube-button { | ||
472 | @include peertube-button; | ||
473 | } | ||
474 | |||
475 | .peertube-button-link { | ||
476 | @include peertube-button-link; | ||
477 | } | ||
478 | |||
479 | .orange-button { | ||
480 | @include orange-button; | ||
481 | } | ||
482 | |||
483 | .orange-button-inverted { | ||
484 | @include orange-button-inverted; | ||
485 | } | ||
diff --git a/client/src/sass/classes.scss b/client/src/sass/classes.scss new file mode 100644 index 000000000..af8e39573 --- /dev/null +++ b/client/src/sass/classes.scss | |||
@@ -0,0 +1,22 @@ | |||
1 | @import '_variables'; | ||
2 | @import '_mixins'; | ||
3 | |||
4 | .peertube-button { | ||
5 | @include peertube-button; | ||
6 | } | ||
7 | |||
8 | .peertube-button-link { | ||
9 | @include peertube-button-link; | ||
10 | } | ||
11 | |||
12 | .orange-button { | ||
13 | @include orange-button; | ||
14 | } | ||
15 | |||
16 | .orange-button-inverted { | ||
17 | @include orange-button-inverted; | ||
18 | } | ||
19 | |||
20 | .grey-button { | ||
21 | @include grey-button; | ||
22 | } | ||