aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/+my-video-channels/my-video-channels.component.scss
blob: b4907db515d4a0cf75874fd3366ac58bf7aad44f (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@use '_variables' as *;
@use '_mixins' as *;

h1 {
  display: flex;
  justify-content: space-between;

  my-global-icon {
    position: relative;
    top: -2px;
  }

  .button-link {
    @include peertube-button-link;
    @include grey-button;
    @include button-with-icon(18px, 3px, -1px);
  }
}

input[type=text] {
  @include peertube-input-text(300px);
}

my-edit-button {
  @include margin-right(10px);
}

.video-channel {
  @include row-blocks;

  padding-bottom: 0;

  my-actor-avatar {
    @include margin-right(10px);
  }
}

.video-channel-info {
  flex-grow: 1;
}

.video-channel-names {
  @include disable-default-a-behaviour;

  width: fit-content;
  display: flex;
  align-items: baseline;
  color: pvar(--mainForegroundColor);
}

.video-channel-display-name {
  font-weight: $font-semibold;
  font-size: 18px;
}

.video-channel-name {
  @include margin-left(5px);

  font-size: 14px;
  color: $grey-actor-name;
}

.video-channel-followers {
  color: pvar(--mainForegroundColor);
}

.video-channel-buttons {
  margin-top: 10px;
  min-width: 190px;
}

.chart-container {
  // Sync these values with the template
  width: 40vw;
  height: 100px;
}

.video-channels-header {
  margin-bottom: 30px;
}

@media screen and (max-width: $small-view) {
  .video-channels-header {
    text-align: center;
  }

  .video-channel {
    padding-bottom: 10px;

    img {
      @include margin-right(0);
    }

    .video-channel-buttons {
      align-self: center;
    }
  }

  .video-channel-info {
    padding-bottom: 10px;
    text-align: center;
  }

  .video-channel-names {
    flex-direction: column;
    align-items: center !important;
    margin: auto;
  }

  .video-channel-name {
    @include margin-left(0 !important);
  }
}

@media screen and (max-width: $mobile-view) {
  .video-channels-header {
    flex-direction: column;

    input[type=text] {
      width: 100% !important;
      margin-bottom: 12px;
    }
  }
}

@media screen and (min-width: breakpoint(lg)) {
  :host-context(.main-col:not(.expanded)) {
    .video-channel-buttons {
      float: right;
    }
  }
}

@media screen and (min-width: $small-view) {
  :host-context(.expanded) {
    .video-channel-buttons {
      float: right;
    }
  }
}