blob: 7f765246061b1562581709704ef14668f432f13a (
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
|
@import '_variables';
@import '_mixins';
@import '_miniature';
.margin-content {
@include adapt-margin-content-width;
}
.section {
@include miniature-rows;
overflow: visible; // For the subscribe dropdown
padding-top: 0 !important;
.section-title {
align-items: center;
}
.videos {
overflow: hidden;
.no-results {
height: 50px;
}
}
my-video-miniature ::ng-deep my-video-actions-dropdown > my-action-dropdown {
// Fix our overflow
position: absolute;
}
}
|