Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[C-3937] Fix new-playlist icon #7792

Merged
merged 2 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,22 @@
}

.add {
margin-right: 16px;
margin-right: 12px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are we using spacing vars in the css files now or only in emotion?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can for sure just lazy here 😢

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol ya np at all. More asking for my own sake

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated so you can see :)

}

.add circle {
.add path:nth-child(1) {
fill: var(--secondary);
}

.add path {
.add path:nth-child(2) {
fill: var(--white);
}

.listItem:hover .add circle {
.listItem:hover .add path:nth-child(1) {
fill: var(--white);
}

.listItem:hover .add path {
.listItem:hover .add path:nth-child(2) {
fill: var(--secondary);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const AddToCollectionModal = () => {
<Scrollbar>
<div className={styles.listContent}>
<div className={cn(styles.listItem)} onClick={handleCreateCollection}>
<IconMultiselectAdd className={styles.add} />
<IconMultiselectAdd className={styles.add} size='xl' />
<span>{messages.newCollection}</span>
</div>
<div className={styles.list}>
Expand Down