Width of input_text boxes
Does layout syntax allow to modify following example
@interact(layout=[['a','b'],['c','d']])
def _(a=1,b=2,c=3,d=4):
print a+b+c+d
in order to control the width of the four input text boxes ?
(I know that
@ interact
def _(a=input_text(a=1, width=15), b=...)
makes this possible, the question is : 'can we do that inside layout' ?)