UX: Fix icon color for video placeholder (#23957)

Also adds a small effect on hover.
This commit is contained in:
Penar Musaraj 2023-10-17 10:25:57 -04:00 committed by GitHub
parent 6036001667
commit 87a635ed32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -934,6 +934,17 @@ aside.onebox.mixcloud-preview {
background-repeat: no-repeat;
background-position: center;
max-width: 30%;
.d-icon {
color: var(--secondary);
height: 2em;
width: 2em;
transition: width 0.15s, height 0.15s;
}
}
&:hover .video-placeholder-overlay .d-icon {
height: 3em;
width: 3em;
}
}