mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
* sdf * docs: 优化文档 * fix: webpack 编译失败问题 --------- Co-authored-by: wanchun <445436867@qq.com>
38 lines
533 B
Vue
38 lines
533 B
Vue
<template>
|
|
<div class="VPFeatures">
|
|
<div class="vp-doc fes-home container">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPFeatures {
|
|
position: relative;
|
|
padding: 0 24px;
|
|
margin-top: 32px;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.VPFeatures {
|
|
padding: 0 48px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.VPFeatures {
|
|
padding: 0 64px;
|
|
}
|
|
}
|
|
|
|
.container {
|
|
margin: 0 auto;
|
|
max-width: 1152px;
|
|
}
|
|
</style>
|
|
|
|
<style>
|
|
.fes-home img {
|
|
height: 320px;
|
|
}
|
|
</style> |