Is there a way to remove all formatting from buttons (look like plain text)? #2808
-
QuestionHi All, I am trying to create a button that just looks like plain text, like a ui.label('My Button').classes('text-red text-[12px] font-medium cursor-pointer'). \
on('click', lambda: ui.notify('I pressed this button')) I was thinking, if there is a way to use a proper I realized Tailwind classes like Thanks a lot, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The button and its styling is provided by Quasar: https://quasar.dev/vue-components/button. You can check out the appearance options there to configure it. |
Beta Was this translation helpful? Give feedback.
-
@Anindya088 Why do you think |
Beta Was this translation helpful? Give feedback.
@Anindya088 Why do you think
ui.button
would be better thanui.label
? In my understandingui.label
with a click handler is a button with all styling stripped away.