-
Hi team, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Currently you need to use Tailwind/Quasar or CSS to do such layouting. We are in discussion to provide a simpler way in #117. Have a look at https://quasar.dev/style/positioning for example. Here a short example: with ui.card().classes('absolute-center'):
with ui.row():
with ui.column():
ui.input('Username')
ui.input('Password', password=True)
ui.button('Login')
with ui.column():
ui.image('https://picsum.photos/200/300').classes('w-32') |
Beta Was this translation helpful? Give feedback.
Currently you need to use Tailwind/Quasar or CSS to do such layouting. We are in discussion to provide a simpler way in #117. Have a look at https://quasar.dev/style/positioning for example. Here a short example: