aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-02-22 09:03:41 +0100
committerChocobozzz <me@florianbigard.com>2023-02-22 09:03:41 +0100
commitb849adf9d807a59de23a0e4983417e213fee2beb (patch)
tree759e2b6f5fe22a6b748fbefa05dcab31033c2e00 /client/src/app/+video-channels
parent39a88d24c7d32e5e17f3741266226525fe6363d8 (diff)
downloadPeerTube-b849adf9d807a59de23a0e4983417e213fee2beb.tar.gz
PeerTube-b849adf9d807a59de23a0e4983417e213fee2beb.tar.zst
PeerTube-b849adf9d807a59de23a0e4983417e213fee2beb.zip
Fix channel buttons height
Diffstat (limited to 'client/src/app/+video-channels')
-rw-r--r--client/src/app/+video-channels/video-channels.component.scss37
1 files changed, 20 insertions, 17 deletions
diff --git a/client/src/app/+video-channels/video-channels.component.scss b/client/src/app/+video-channels/video-channels.component.scss
index c8b182196..aba266fcc 100644
--- a/client/src/app/+video-channels/video-channels.component.scss
+++ b/client/src/app/+video-channels/video-channels.component.scss
@@ -34,14 +34,15 @@
34} 34}
35 35
36.channel-info { 36.channel-info {
37 // Use the same margin as the videos grid
37 @include grid-videos-miniature-margins(false, 15px); 38 @include grid-videos-miniature-margins(false, 15px);
39 @include margin-bottom(3rem);
38 40
39 display: grid; 41 display: grid;
40 grid-template-columns: 1fr auto; 42 grid-template-columns: 1fr auto;
41 grid-template-rows: auto auto; 43 grid-template-rows: auto auto;
42 44
43 background-color: pvar(--channelBackgroundColor); 45 background-color: pvar(--channelBackgroundColor);
44 margin-bottom: 45px;
45 padding-top: var(--myGlobalTopPadding); 46 padding-top: var(--myGlobalTopPadding);
46 font-size: var(--myFontSize); 47 font-size: var(--myFontSize);
47} 48}
@@ -68,24 +69,26 @@
68 69
69.channel-buttons { 70.channel-buttons {
70 display: flex; 71 display: flex;
72 align-items: center;
71 flex-wrap: wrap; 73 flex-wrap: wrap;
74 gap: 1rem;
72 75
73 > *:not(:last-child) { 76 &.right {
74 @include margin-right(15px); 77 @include margin-left(3rem);
75 } 78 }
76}
77 79
78.channel-buttons.right { 80 // Only used on small screen
79 @include margin-left(45px); 81 &.bottom {
80} 82 @include margin-bottom(2rem);
81 83
82// Only used by mobile 84 justify-content: center;
83.channel-buttons.bottom { 85 display: none;
84 display: none; 86 }
85} 87}
86 88
87.owner-card { 89.owner-card {
88 @include margin-left(105px); 90 @include margin-left(105px);
91
89 grid-column: 2; 92 grid-column: 2;
90 // Takes all the column 93 // Takes all the column
91 grid-row: 1 / 3; 94 grid-row: 1 / 3;
@@ -194,14 +197,14 @@
194 display: inline-block; 197 display: inline-block;
195 } 198 }
196 199
197 .channel-buttons.bottom { 200 .channel-buttons {
198 display: flex; 201 &.right {
199 justify-content: center; 202 display: none;
200 margin-bottom: 30px; 203 }
201 }
202 204
203 .channel-buttons.right { 205 &.bottom {
204 display: none; 206 display: flex;
207 }
205 } 208 }
206 209
207 .owner-card { 210 .owner-card {