X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideo-channels%2Fvideo-channels.component.scss;h=0a49f53cffacf1ef237491868404b9da1b8ba50a;hb=ee8e602ef9761b4869e14d4d3ed24a2e18f22c65;hp=6470629f853d200beb805158b52f39d25cc515b9;hpb=818c449b3c34e9f324ac744120c8774e724ab25e;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+video-channels/video-channels.component.scss b/client/src/app/+video-channels/video-channels.component.scss index 6470629f8..0a49f53cf 100644 --- a/client/src/app/+video-channels/video-channels.component.scss +++ b/client/src/app/+video-channels/video-channels.component.scss @@ -1,3 +1,9 @@ +// Bootstrap grid utilities require functions, variables and mixins +@import 'node_modules/bootstrap/scss/functions'; +@import 'node_modules/bootstrap/scss/variables'; +@import 'node_modules/bootstrap/scss/mixins'; +@import 'node_modules/bootstrap/scss/grid'; + @import '_variables'; @import '_mixins'; @@ -14,7 +20,7 @@ grid-template-rows: 1fr auto / 1fr auto; grid-template-areas: "name buttons" "lower buttons"; - @media screen and (max-width: #{map-get($grid-breakpoints, lg)}) { + @include media-breakpoint-down(lg) { grid-template-areas: "name name" "lower buttons"; } } @@ -38,11 +44,20 @@ display: flex; height: max-content; margin-left: auto; - margin-top: 20px; + margin-top: 10px; grid-row: buttons-start / span buttons-end; grid-column: buttons-start; + @include media-breakpoint-down(lg) { + flex-flow: column-reverse; + + a { + margin-top: 0.25rem; + margin-right: 0 !important; + } + } + a { @include peertube-button-outline; line-height: 1.8; @@ -52,3 +67,16 @@ height: min-content; } } + +@media screen and (max-width: $mobile-view) { + .sub-menu { + .actor { + flex-direction: column; + + .actor-info .actor-names { + flex-direction: column; + align-items: normal; + } + } + } +}