blob: 4957e91d722ce8a70388a10947f4eb7d55167750 (
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
|
@import '_variables';
@import '_mixins';
@import '_miniature';
.margin-content {
@include fluid-videos-miniature-layout;
}
.section {
@include miniature-rows;
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;
}
}
@media screen and (max-width: $mobile-view) {
.section {
.section-title {
flex-direction: column;
align-items: normal;
}
}
}
|