-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make more MUI classes available for Buttons #588
Comments
This issue comes from a user on Discord. It is quite hard to change the size of a button if you don't know CSS. main.py: from taipy import Gui
buttons = """
<|Small|button|class_name=smallButton|>
<|Big|button|class_name=bigButton|>"
"""
Gui(buttons).run() main.css: .smallButton{
min-height: unset;
line-height: 1.2rem;
padding: 0;
font-size: 1rem;
text-transform: initial;
}
.bigButton{
min-height: unset;
line-height: 3.6rem;
padding: 0;
font-size: 3rem;
text-transform: initial;
} EnvironmentTaipy 3.0.0 |
Hi, I can help with the implementation of this |
@Dljdd Thank you for your help. |
New Quest!A new Quest has been launched in @Avaiga’s repo. Some loot has been stashed in this issue to reward the solver! 🗡 Comment ⚔️ When you submit a PR, comment Questions? Check out the docs. |
@quest-bot embark |
@ArjunCodess has embarked on their Quest. 🗡
This is not an assignment to the issue. Please check the repo’s contribution guidelines before submitting a PR. Questions? Check out the docs. |
@quest-bot embark |
@Dljdd has embarked on their Quest. 🗡
This is not an assignment to the issue. Please check the repo’s contribution guidelines before submitting a PR. Questions? Check out the docs. |
Hi @jrobinAV , could you please assign this to me? |
You are now assigned @Rishi-0007 |
Hi @FlorianJacta , |
Assigned! |
i am working on it! |
I would like to work on it, and I think I can solve it .Can you please assign this issue to me? |
You are assigned @VivekKrYadav2078 |
Hi @FlorianJacta, I would like to work on this issue |
🧚 @JeevaRamanathan has submitted PR #2159 and is claiming the loot. Keep up the pace, or you'll be left in the shadows. Questions? Check out the docs. |
Make the MUI classes "Small", "Medium" and "Large" available for buttons.
https://mui.com/material-ui/react-button/
The text was updated successfully, but these errors were encountered: