blob: bcb58eac2a6634559d441199673a5fa7cd12c2e7 (
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
|
@import '_variables';
@import '_mixins';
.create-button {
@include create-button;
}
/deep/ .action-button {
&.action-button-delete {
margin-right: 10px;
}
}
.video-channel {
display: flex;
min-height: 130px;
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px solid #C6C6C6;
img {
@include avatar(80px);
margin-right: 10px;
}
.video-channel-info {
flex-grow: 1;
a.video-channel-names {
@include disable-default-a-behaviour;
display: flex;
color: #000;
.video-channel-display-name {
font-weight: $font-semibold;
font-size: 18px;
}
.video-channel-name {
font-size: 14px;
color: #777272;
}
}
}
.video-channel-buttons {
min-width: 190px;
}
}
.video-channels-header {
text-align: right;
margin: 20px 0 50px;
}
@media screen and (max-width: 800px) {
.video-channel {
flex-direction: column;
height: auto;
text-align: center;
img {
margin-right: 0;
}
.video-channel-buttons {
margin-top: 10px;
}
}
}
|