]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-video-miniature/videos-selection.component.scss
Move to sass @use
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-miniature / videos-selection.component.scss
CommitLineData
fa12eacc
C
1@use '_variables';
2@use '_mixins';
693263e9
C
3
4.action-selection-mode {
5 display: flex;
6 justify-content: flex-end;
7 flex-grow: 1;
0f7407d9 8}
693263e9 9
0f7407d9
C
10.action-selection-mode-child {
11 position: fixed;
693263e9 12
0f7407d9 13 .action-button {
27bc9586
C
14 @include margin-left(55px);
15
0f7407d9 16 display: block;
693263e9
C
17 }
18}
19
0f7407d9
C
20.action-button-cancel-selection {
21 @include peertube-button;
22 @include grey-button;
23}
24
693263e9 25.video {
0f7407d9 26 @include row-blocks($column-responsive: false);
693263e9
C
27
28 &:first-child {
29 margin-top: 47px;
30 }
31
32 .checkbox-container {
27bc9586
C
33 @include margin-right(20px);
34 @include margin-left(12px);
35
693263e9
C
36 display: flex;
37 align-items: center;
693263e9
C
38 }
39
40 my-video-miniature {
41 flex-grow: 1;
42 }
43}
44
693263e9 45
0f7407d9
C
46@include on-small-main-col {
47 .video {
48 flex-wrap: wrap;
49 }
50}
693263e9 51
0f7407d9
C
52@include on-mobile-main-col {
53 .checkbox-container {
54 display: none;
693263e9 55 }
cd801c69 56
57 .action-selection-mode {
58 display: none; // disable for small screens
59 }
693263e9 60}