daksh2k / Spicetify-stuff

Some spicetify extensions!
https://daksh2k.me/Spicetify-stuff/
MIT License
208 stars 25 forks source link

[Feature Request]: Option to change cover art corner radius #157

Closed Joecalone closed 7 months ago

Joecalone commented 7 months ago

Choose the extension for feature request.

Other

📝 Provide a description of the new feature

I'm not very tech-savvy, so maybe there's an easy way of doing this, but I tried editing the fullAppDisplay.js file to no avail:

I'm not a big fan of rounded corners on album art, so it would be nice to be able to set the corner radius to 0px. If there's a way of currently doing this, I'd be very grateful if you could point me towards it. Thanks.

➕ Additional Information

No response

daksh2k commented 7 months ago

Hi @Joecalone, There is no option in settings to this currently from settings but you can override the styles via CSS.

First, check you have installed the correct extension, mine is this one

image

you can add your custom CSS by using this extension

image

open the CSS editor by f12 or by going to the settings and paste this style

#fsd-art-image{
  border-radius: 0px !important;
}
image

Then it should work.

Joecalone commented 7 months ago

This worked perfectly, thanks so much!