inputText label position
I am wondering whether it is possible to display the label next to the input field rather than on top of it. Also how would I style font color etc of the label. New to solara and just trying to figure this out
2 Replies
Hi @PeterT! With
solara.InputText
this is currently not supported. You can see all the configuration that is available for the ipyvuetify
/ solara.v
TextField
component here, but they also don't seem to directly support what you'd like. So I think the easiest way to do this is to define a custom component that uses an InputText
and a separate text component for label, like I've done here.Vuetify — A Material Design Framework for Vue.js
Vuetify is a Material Design component framework for Vue.js. It aims to provide all the tools necessary to create beautiful content rich applications.
Thank you that works. The bit I was missing was the align-items styling. Without it this looks strange