]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+my-account/my-account-notifications/my-account-notifications.component.scss
Move to stylelint
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-notifications / my-account-notifications.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .header {
5 display: flex;
6 font-size: 15px;
7 margin-bottom: 20px;
8
9 a {
10 @include peertube-button-link;
11 @include grey-button;
12 @include button-with-icon(18px, 3px, -1px);
13 }
14
15 button {
16 @include peertube-button;
17 @include grey-button;
18 @include button-with-icon(20px, 3px, -1px);
19 }
20
21 .peertube-select-container {
22 @include peertube-select-container(auto);
23 }
24 }
25
26
27 my-user-notifications {
28 font-size: 15px;
29 }
30
31 @media screen and (max-width: $mobile-view) {
32 .header {
33 flex-direction: column;
34
35 > :first-child,
36 .peertube-select-container {
37 margin-bottom: 15px;
38 }
39
40 .peertube-select-container {
41 margin-left: 0 !important;
42 }
43 }
44 }
45
46 @media screen and (min-width: $mobile-view) and (max-width: $small-view) {
47 .header {
48 a {
49 font-size: 0;
50 padding: 0 13px;
51 }
52
53 .peertube-select-container {
54 width: auto !important;
55 }
56 }
57 }
58
59 @media screen and (min-width: $mobile-view) and (max-width: #{$small-view + $menu-width}) {
60 :host-context(.main-col:not(.expanded)) {
61 .header {
62 a {
63 font-size: 0;
64 padding: 0 13px;
65 }
66
67 .peertube-select-container {
68 width: auto !important;
69 }
70 }
71 }
72 }