daksh2k / Spicetify-stuff

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

[Feature Request]: Enlarge Secondary Controls #185

Closed livejamie closed 3 months ago

livejamie commented 3 months ago

Choose the extension for feature request.

Full Screen Mode

📝 Provide a description of the new feature

I use a touchscreen device and the secondary controls are hard to touch.

➕ Additional Information

It would be nice if there was an option to set their size or make them bigger. Thanks!

daksh2k commented 3 months ago

You can use this CSS to make them bigger, adding it configurable from settings won't be possible for now.

#full-screen-display .fs-button {
 transform: scale(1.5);
 margin: 0 5px;
}
#full-screen-display .fs-button:hover {
  transform: scale(1.7);
}
image

See this on how to add styles https://github.com/daksh2k/Spicetify-stuff/issues/157#issuecomment-2090327690

livejamie commented 3 months ago

Thast works, thank you!