CSS to Increase Size of Floating Button

Would love CSS to increase button size on desktop and mobile separately please.

Thank you!

1 Like

@Shawn_Martin, Sure, here are the codes:

1. Change button size on mobile devices:

@media (max-width: 500px) {
[class*="ButtonBase__ButtonContainer-sc"] {
  scale: 1.2;
}
}

2. Change button size on desktop:

@media (min-width: 1024px) {
[class*="ButtonBase__ButtonContainer-sc"] {
  scale: 1.2;
}
}
2 Likes