X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bvideo-channels%2Fvideo-channels.component.scss;h=a8e823b40eb63288bdf170a2e146e96ff798f4b3;hb=9181bc0c802bb84aeae9f07b08b59dcd90f486bc;hp=aa26a7e7b7fc4b977e3d09a8b46131b349c46f5b;hpb=9b8a7aa8ea128f7e197ff38ca9f86ffa53bbe110;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 aa26a7e7b..a8e823b40 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'; @@ -12,12 +18,10 @@ display: grid !important; grid-template-columns: 1fr auto; grid-template-rows: 1fr auto / 1fr auto; - grid-template-areas: "name buttons" - "lower buttons"; + grid-template-areas: "name buttons" "lower buttons"; - @media screen and (max-width: #{map-get($grid-breakpoints, lg)}) { - grid-template-areas: "name name" - "lower buttons"; + @include media-breakpoint-down(lg) { + grid-template-areas: "name name" "lower buttons"; } } @@ -40,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; @@ -53,4 +66,4 @@ my-subscribe-button { height: min-content; } -} \ No newline at end of file +}