X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fvideo%2Fabstract-video-list.scss;h=92998cb44909a7a8eb1725d907c479e1c7c30f8d;hb=71e318b4fe66175d03c7c82357d60062eb68af81;hp=52797bc6cf2e1261fe96842aae47038de8a8e78a;hpb=fada8d75550dc7365f7e18ee1569b9406251d660;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/video/abstract-video-list.scss b/client/src/app/shared/video/abstract-video-list.scss index 52797bc6c..92998cb44 100644 --- a/client/src/app/shared/video/abstract-video-list.scss +++ b/client/src/app/shared/video/abstract-video-list.scss @@ -1,3 +1,5 @@ +@import '_mixins'; + .videos { text-align: center; @@ -5,3 +7,32 @@ text-align: left; } } + +.videos-header { + display: flex; + height: 80px; + align-items: center; + + .title-page.title-page-single { + margin: 0 5px 0 0; + } + + my-video-feed { + display: inline-block; + position: relative; + top: 1px; + } + + .moderation-block { + display: flex; + flex-grow: 1; + justify-content: flex-end; + align-items: center; + } +} + +@media screen and (max-width: 500px) { + .videos { + @include video-miniature-small-screen; + } +}