salix-front/src/components/ui/VnRow.vue

13 lines
202 B
Vue

<template>
<div id="row">
<slot></slot>
</div>
</template>
<style lang="scss" scopped>
@media screen and (max-width: 800px) {
#row {
flex-direction: column;
}
}
</style>