Skip to content

Commit

Permalink
Gleev v4.13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
attemka committed Nov 9, 2023
1 parent 972cddc commit 6103677
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"description": "UI for consuming Joystream - a user governed video platform",
"version": "4.13.3",
"version": "4.13.4",
"license": "GPL-3.0",
"workspaces": [
"packages/*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const spin = keyframes`
to {
transform: translate(-50%, -50%) rotate(360deg);
}
`
`

const spinAnimation = css`
animation: ${spin} 3s linear infinite;
Expand All @@ -38,8 +38,8 @@ export const StyledContainer = styled(GridItem)<{ mostEarned: boolean }>`
content: '';
display: block;
background: conic-gradient(#000 0turn 0.5turn, #007dff 0.6turn, #afd5fc 0.8turn, #000 1turn);
width: calc(100% * 2);
padding-bottom: calc(100% * 2);
width: calc(100% * 2.5);
padding-bottom: calc(100% * 2.5);
position: absolute;
left: 50%;
top: 50%;
Expand Down Expand Up @@ -68,6 +68,7 @@ export const StyledContainer = styled(GridItem)<{ mostEarned: boolean }>`
`

export const StyledTierBadge = styled(TierBanner)`
padding-bottom: 0;
border-radius: calc(1.5 * ${cVar('radiusLarge')});
`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,14 @@ export const TopReferrer = ({
{count}
</Text>
</StyledBadgeContentWrapper>
<svg>
<filter id="noise">
<feTurbulence type="fractalNoise" baseFrequency="1" numOctaves="1" stitchTiles="stitch" />
<feBlend in="SourceGraphic" in2="colorNoise" mode="multiply" />
</filter>
</svg>
<div className="absolute-container">
<svg>
<filter id="noise">
<feTurbulence type="fractalNoise" baseFrequency="1" numOctaves="1" stitchTiles="stitch" />
<feBlend in="SourceGraphic" in2="colorNoise" mode="multiply" />
</filter>
</svg>
</div>
</StyledTierBadge>
))}
</FlexBox>
Expand Down

0 comments on commit 6103677

Please sign in to comment.