-
QuestionI need keep some button size (for example 200 pixel x 200 pixel) for different button text. However, the width of ui buttons will changed with different button text and there's no way to set button height. Can anyone tell me the solution? |
Beta Was this translation helpful? Give feedback.
Answered by
aitech95
Oct 27, 2024
Replies: 1 comment 1 reply
-
Hi @aitech95, Is this what you're looking for? ui.button('Click me').classes('w-[200px] h-[200px]')
ui.button('No, click me').classes('w-[200px] h-[200px]') ![]() |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi falk schindler,
It's exactly what I'm looking for!
Thank you very much for your early reply!