hide channel thumbnail on medium screens too
This commit is contained in:
parent
f1c225d577
commit
28f2a9da0a
2 changed files with 7 additions and 0 deletions
|
@ -302,6 +302,12 @@
|
|||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
@media (max-width: $breakpoint-medium) {
|
||||
.channel-thumbnail {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: $breakpoint-small) {
|
||||
width: calc((100% - var(--spacing-medium) * 1) / 2);
|
||||
margin-bottom: var(--spacing-large);
|
||||
|
|
|
@ -4,6 +4,7 @@ $spacing-width: 36px;
|
|||
|
||||
$breakpoint-xsmall: 600px;
|
||||
$breakpoint-small: 900px;
|
||||
$breakpoint-medium: 1150px;
|
||||
|
||||
:root {
|
||||
// Width & spacing
|
||||
|
|
Loading…
Add table
Reference in a new issue