27 lines
432 B
Vue
27 lines
432 B
Vue
<template>
|
|
<div class="vn-row q-gutter-md">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
.vn-row {
|
|
display: flex;
|
|
> :deep(*) {
|
|
flex: 1;
|
|
}
|
|
&[wrap] {
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
@media screen and (max-width: 800px) {
|
|
.vn-row {
|
|
&:not(.wrap) {
|
|
flex-direction: column;
|
|
}
|
|
&[fixed] {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
}
|
|
</style>
|