You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v-layout is, at least the way we've used it, a flexbox-based 12-column grid implementation (and we commonly use < 12 columns, leaving some gutter on the right) It is used in three components:
AddNewVenue (wrapper around the subset of submission form fields for creating a new venue
SubmissionForm (quite heavily; it's the basis of pretty much the entire layout)
contact page form (similar to submission form, but so simple in this case it can easily be replaced with a max-width)
We need a non-Vuetify replacement. Fortunately, it's just flex; this is straightforward.
The text was updated successfully, but these errors were encountered:
v-layout
is, at least the way we've used it, a flexbox-based 12-column grid implementation (and we commonly use < 12 columns, leaving some gutter on the right) It is used in three components:AddNewVenue
(wrapper around the subset of submission form fields for creating a new venueSubmissionForm
(quite heavily; it's the basis of pretty much the entire layout)contact
page form (similar to submission form, but so simple in this case it can easily be replaced with amax-width
)We need a non-Vuetify replacement. Fortunately, it's just
flex
; this is straightforward.The text was updated successfully, but these errors were encountered: