tomnjerry74 97 Posted August 27, 2021 Posted August 27, 2021 Hello, I'm having a hard time targeting the album artist card overlays because for some reason they are given the square class despite being round. I've accomplished this in the "More like this view" with the following: .cardFocusContent-round .cardOverlayContainer { border-radius: 100%!important; } How can I target the album artist view to do the same? Also, is this intended? I've never seen this design choice utilized before and in my opinion it's pretty jarring.
Happy2Play 9444 Posted August 27, 2021 Posted August 27, 2021 (edited) Maybe something like this but the issue is the overlay options, so they would need adjustment also. Your code above does not work because each of those elements are siblings. button.cardContent-round+.cardOverlayContainer { overflow: hidden; border-radius: 100%; } Edited August 27, 2021 by Happy2Play 1
tomnjerry74 97 Posted August 28, 2021 Author Posted August 28, 2021 20 hours ago, Happy2Play said: Maybe something like this but the issue is the overlay options, so they would need adjustment also. Your code above does not work because each of those elements are siblings. button.cardContent-round+.cardOverlayContainer { overflow: hidden; border-radius: 100%; } You're continued support is much appreciated - thank you I see what you mean about the overlay options.. To make things easier, I think I'll just remove the border radius on all cards completely.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now