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