altcha-org / altcha

GDPR compliant, self-hosted CAPTCHA alternative with PoW mechanism and advanced anti-spam filter.
https://altcha.org
MIT License
241 stars 5 forks source link

Appearance Options #16

Closed scottix closed 4 months ago

scottix commented 4 months ago

I know you have some appearance options, but even more would be nice. Particularly being able to set the width.

like width: 100% I see max-width is set to 260px, but can't change that unless I do some manipulation.

See here below would be nice to have it full width.

2024-02-21 10_25_12-Window

ovx commented 4 months ago

Hi, thanks for the suggestion. It's okay to change the styling using the .altcha selector:

.altcha {
  max-width: 100% !important;
}

But I also added a new css variable --altcha-max-width (from the version 0.1.7), so now you can do this:

<altcha-widget
   style="--altcha-max-width:100%"
></altcha-widget>