mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-29 08:21:30 +00:00
50 lines
988 B
SCSS
50 lines
988 B
SCSS
.ads-wrapper {
|
|
@extend .navigation;
|
|
background-color: var(--color-ads-background);
|
|
padding-top: 0.5rem;
|
|
padding-right: 0.5rem;
|
|
|
|
p {
|
|
margin-left: 0.4rem; // The ads provider adds weird padding to their wrapper
|
|
font-size: var(--font-xsmall);
|
|
color: var(--color-ads-text);
|
|
}
|
|
|
|
.button--link {
|
|
color: var(--color-ads-link);
|
|
}
|
|
}
|
|
|
|
// Inline Video Ads
|
|
.ads__claim-item {
|
|
border-bottom: 1px solid var(--color-border);
|
|
padding: var(--spacing-medium);
|
|
background-color: var(--color-ads-background);
|
|
display: flex;
|
|
|
|
> div {
|
|
width: 50%;
|
|
position: relative !important;
|
|
}
|
|
|
|
.avp-p-gui {
|
|
z-index: 1 !important;
|
|
}
|
|
|
|
.pbs__player.pb-stream-sticky-on {
|
|
position: relative !important;
|
|
z-index: 1 !important;
|
|
margin-top: -140px !important;
|
|
}
|
|
}
|
|
|
|
.ads__claim-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding-left: var(--spacing-large);
|
|
}
|
|
|
|
.ads__claim-text--small {
|
|
font-size: var(--font-small);
|
|
}
|