]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-notifications/my-account-notifications.component.scss
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-notifications / my-account-notifications.component.scss
CommitLineData
8cbc40b2
C
1@use '_variables' as *;
2@use '_mixins' as *;
2f1548fd
C
3
4.header {
5 display: flex;
457bb213 6 margin-bottom: 20px;
2f1548fd
C
7
8 a {
9 @include peertube-button-link;
10 @include grey-button;
457bb213 11 @include button-with-icon(18px, 3px, -1px);
2f1548fd
C
12 }
13
14 button {
15 @include peertube-button;
16 @include grey-button;
457bb213 17 @include button-with-icon(20px, 3px, -1px);
2f1548fd 18 }
654a188f
RK
19
20 .peertube-select-container {
21 @include peertube-select-container(auto);
22 }
2f1548fd
C
23}
24
4682468d
K
25@media screen and (max-width: $mobile-view) {
26 .header {
27 flex-direction: column;
28
931d3430
C
29 > :first-child,
30 .peertube-select-container {
4682468d
K
31 margin-bottom: 15px;
32 }
225a7682
RK
33
34 .peertube-select-container {
27bc9586 35 @include margin-left(0 !important);
225a7682
RK
36 }
37 }
38}
39
40@media screen and (min-width: $mobile-view) and (max-width: $small-view) {
41 .header {
42 a {
43 font-size: 0;
44 padding: 0 13px;
45 }
46
47 .peertube-select-container {
48 width: auto !important;
49 }
50 }
51}
52
53@media screen and (min-width: $mobile-view) and (max-width: #{$small-view + $menu-width}) {
54 :host-context(.main-col:not(.expanded)) {
55 .header {
56 a {
57 font-size: 0;
58 padding: 0 13px;
59 }
60
61 .peertube-select-container {
62 width: auto !important;
63 }
64 }
4682468d
K
65 }
66}