Textboxs on the same line

Hi. Is there a way putting more textboxes side by side!

Like this:
Screenshot_2018-12-06-18-42-10|657x500

I cannot see the screenshot, but I would look into using the rows and column system.

I recently used this in the following way;

<f7-row no-gap>
        <f7-col>
          <f7-list style="margin:0">
            <f7-list-input :label="`${days[index]} Open`" type="time" :value="hours[index].open" @input="hours[index].open = $event.target.value"></f7-list-input>
          </f7-list>
        </f7-col>
        <f7-col>
          <f7-list style="margin:0">
            <f7-list-input :label="`${days[index]} Close`" type="time" :value="hours[index].close" @input="hours[index].close = $event.target.value"></f7-list-input>
          </f7-list>
        </f7-col>
      </f7-row>

Obviously change the input type from checkbox to text input