]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/video-list/video-overview.component.scss
fix likes bar, grid adjustment and menu width
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / video-list / video-overview.component.scss
CommitLineData
2d3741d6
C
1@import '_variables';
2@import '_mixins';
3
4.section {
5 padding-top: 10px;
6
7 &:first-child {
8 padding-top: 30px;
9 }
10}
11
12.section-title {
13 font-size: 17px;
14 font-weight: $font-semibold;
15 margin-bottom: 20px;
16
17 a {
18 @include disable-default-a-behaviour;
19
20 color: #000;
21 }
1a471091
C
22}
23
24.channel {
25 .section-title a {
26 display: flex;
27 width: fit-content;
28 align-items: center;
29
30 img {
31 @include avatar(30px);
32
33 margin-right: 10px;
34 }
35 }
2d3741d6 36}