rubinsh

Results 7 comments of rubinsh

I used the following as a workaround to generate an RTL template. ```html * { direction: rtl; text-align: right !important; } ``` of course you can define more granular css...

@hadifarnoud did you try text-align: center !important

You can also do that using the __slot option and add handlers to save the data

@6twenty - I've had the same issue, solved it the way you did, and was about to open the same issue and then I ran into yours :-) @SammyLin -...

same issue here! and When I wrote a custom implementation with Playwright - proxy works

After reading the source code and some fiddling, I was able to work around it as follows: ```python username = os.getenv("PROXY_USERNAME") password = os.getenv("PROXY_PASSWORD") proxy_address = os.getenv("PROXY_PROXY_ADDRESS") proxy_port = os.getenv("PROXY_PROXY_PORT")...