Skip to content

Commit

Permalink
Adjust margins and media queries on Channel view
Browse files Browse the repository at this point in the history
  • Loading branch information
MarmadileManteater committed Feb 10, 2024
1 parent 30248d6 commit 1de64f2
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion src/renderer/views/Channel/Channel.css
Original file line number Diff line number Diff line change
Expand Up @@ -217,14 +217,36 @@
}
}

@media only screen and (max-width: 680px) {
.channelInfo {
flex-direction: column;
margin-block: 20px 10px;
}
.card {
max-inline-size: none;
inline-size: 100%;
}
.channelInfoActionsContainer {
flex-direction: row-reverse;
justify-content: left;
gap: 10px;
margin-block-start: 5px;
}
}

@media only screen and (max-width: 400px) {
.channelInfo {
justify-content: center;
gap: 10px;
}

.channelInfoActionsContainer {
flex-direction: column-reverse;
flex-direction: row-reverse;
justify-content: center;
}

.channelLineContainer {
padding-inline-start: 0;
}

.thumbnailContainer {
Expand Down

0 comments on commit 1de64f2

Please sign in to comment.