I am trying to have an ipyvuetify Textfield for setting a one-digit number, but cannot limit the with of the text field to anything reasonable. A simple spinet of code e.g.
import ipyvuetify as v
#Textfield should be an one digit number...
v.Row(children=[v.TextField(type="number"), v.Html(tag='H1',children=['Some text here'])])
results to a huge TextField that looks ugly:
How can I set the some limit to the width of the TextField / set it so that it has max width of one character? Alternatively, is there any property I can set on vue v-TextField / vue code that would limit the size of the TextField ?
Adding a
max-width:50px
to the TextField style works.