Fix issue where channel upload viewcounts were creating a new line #7154

Merged
mayeaux merged 7 commits from improve-viewcount-display into master 2021-09-29 21:04:43 +02:00
2 changed files with 7 additions and 8 deletions
Showing only changes of commit 4855bd6380 - Show all commits

View file

@ -48,7 +48,6 @@ type Props = {
showMature: boolean, showMature: boolean,
showHiddenByUser?: boolean, showHiddenByUser?: boolean,
properties?: (Claim) => void, properties?: (Claim) => void,
live?: boolean,
collectionId?: string, collectionId?: string,
showNoSourceClaims?: boolean, showNoSourceClaims?: boolean,
isLivestream: boolean, isLivestream: boolean,

View file

@ -3,17 +3,17 @@
.contains_view_count { .contains_view_count {
// accommodating for large view counts on channel overview // accommodating for large view counts on channel overview
@media (min-width: $breakpoint-large) { @media (min-width: $breakpoint-large) {
padding: var(--spacing-s) 4px !important; padding: var(--spacing-s) 4px;
}
.date_time { .date_time {
font-size: 11px !important; font-size: 11px;
}
} }
.channel-thumbnail { .channel-thumbnail {
// accommodating for large view counts on channel overview // accommodating for large view counts on channel overview
@media (min-width: $breakpoint-large) { @media (min-width: $breakpoint-large) {
margin-right: 7px !important; margin-right: 7px;
} }
} }
} }
@ -24,11 +24,11 @@
margin: 0 4px; margin: 0 4px;
} }
font-size: 11px;
@media (min-width: $breakpoint-large) { @media (min-width: $breakpoint-large) {
&::after { &::after {
margin: 0 2.5px; margin: 0 2.5px;
} }
font-size: 11px;
} }
} }