tiny-vue/examples/sites/demos/pc/app/layout/responsive-layout-compositi...

59 lines
1.1 KiB
Vue

<template>
<div class="content">
<tiny-layout class="tiny-layout-responsive-layout">
<tiny-row :gutter="10">
<tiny-col :xs="4" :sm="3" :md="2" :lg="4" :xl="1">
<div class="col">1</div>
</tiny-col>
<tiny-col :xs="2" :sm="3" :md="4" :lg="2" :xl="5">
<div class="col">2</div>
</tiny-col>
<tiny-col :xs="2" :sm="3" :md="4" :lg="4" :xl="5">
<div class="col">3</div>
</tiny-col>
<tiny-col :xs="4" :sm="3" :md="2" :lg="2" :xl="1">
<div class="col">4</div>
</tiny-col>
</tiny-row>
</tiny-layout>
</div>
</template>
<script setup>
import { Layout as TinyLayout, Row as TinyRow, Col as TinyCol } from '@opentiny/vue'
</script>
<style scoped>
.tiny-row {
margin-bottom: 20px;
}
.tiny-row .last-child {
margin-bottom: 0;
}
.tiny-col .col {
line-height: 30px;
text-align: center;
color: #fff;
background: #1f9ed8;
border-radius: 15px;
}
.tiny-col:nth-child(even) .col {
background: #73d0fc;
}
.lg {
height: 80px;
}
.md {
height: 60px;
}
.sm {
height: 40px;
}
</style>