-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
19 changed files
with
195 additions
and
109 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
apps/audius-client/packages/mobile/src/assets/images/dogEarRectangle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
apps/audius-client/packages/web/src/assets/img/dogEarRectangle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 22 additions & 34 deletions
56
apps/audius-client/packages/web/src/components/dog-ear/DogEar.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,49 @@ | ||
.artistPick { | ||
.container { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
z-index: 10; | ||
width: 80px; | ||
border-radius: var(--unit-2) 0px 0px 0px; | ||
width: var(--unit-12); | ||
height: var(--unit-12); | ||
pointer-events: none; | ||
overflow: hidden; | ||
} | ||
|
||
.container { | ||
.rectangle { | ||
position: absolute; | ||
transform: rotate(45deg) translateX(-64px); | ||
box-shadow: 1px 1px 7px -2px rgba(0, 0, 0, 0.5); | ||
width: 80px; | ||
height: 80px; | ||
overflow: hidden; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
/* Note: dogEarRectangle has multiple `path` elements, but we only want to fill one of them. | ||
That path uses `fill='currentColor'`, allowing us to set `color` here instead of `fill` */ | ||
.gated { | ||
background: var(--accent-blue); | ||
color: var(--accent-blue); | ||
} | ||
|
||
.purchase { | ||
background: var(--special-light-green); | ||
color: var(--special-light-green); | ||
} | ||
|
||
.star { | ||
background: linear-gradient(314.61deg, #7e1bcc 0%, #a22feb 100%); | ||
.artistPick { | ||
color: var(--secondary); | ||
} | ||
|
||
.hidden { | ||
background: linear-gradient(314.61deg, #858199 0%, #c2c0cc 100%); | ||
color: var(--neutral); | ||
} | ||
|
||
.matrix .container { | ||
background: var(--page-header-gradient); | ||
} | ||
|
||
.isMobile .container { | ||
transform: rotate(45deg) translateX(-68px); | ||
} | ||
|
||
.artistPick svg { | ||
.icon { | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
margin-left: 5px; | ||
margin-top: 2px; | ||
top: var(--unit-1); | ||
left: var(--unit-1); | ||
width: var(--unit-4); | ||
height: var(--unit-6); | ||
} | ||
|
||
.isMobile svg { | ||
margin: 4px 0px 0px 4px; | ||
width: 16px; | ||
height: 16px; | ||
height: var(--unit-4); | ||
} | ||
|
||
.artistPick svg path { | ||
.icon path { | ||
fill: var(--static-white); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 8 additions & 2 deletions
10
apps/audius-client/packages/web/src/components/tile/Tile.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.