CSS for Poll Rounded Corners

Hi, I’m looking for CSS for to remove rounded corners on poll background - didn’t see anything at all in CSS Codes.

Thank you!

2 Likes

Would like CSS for Poll width and border-radius please?

Thank you!

2 Likes

Hi there, @Shawn_Martin :wave:

This code will work for you:

[class*='answer-button__Container-sc'] {
  border-radius: 0;
  width: 200px;
}
1 Like

Thanks Max unfortunately that is for the answer buttons I need for container.

Could you help with that?

Shawn Martin
FanYourLocal

2 Likes

Sorry for misunderstanding!

Here are the solutions:

  1. Change width
.global-styles,
.es-embed-root {
  max-width: 1000px !important;
}

  1. Change border radius
[class*='WidgetBackground__Container-sc'] {
  border-radius: 24px !important;
}
1 Like