fix: 首页图片

dev-theme
wx-jincw 2 weeks ago
parent d2d52c3089
commit 2799b33955

@ -1,5 +1,18 @@
<template> <template>
<div class="app-container home"> <div class="app-container">
<div class="left-container">
<!-- <el-carousel height="300px">
<el-carousel-item v-for="item in 4" :key="item">
<div></div>
<div></div>
</el-carousel-item>
</el-carousel> -->
</div>
<div class="right-container">
</div>
</div> </div>
</template> </template>
@ -8,78 +21,28 @@ export default {
name: "Index", name: "Index",
data() { data() {
return { return {
//
version: "3.8.6"
}; };
}, },
methods: { methods: {
goTarget(href) {
window.open(href, "_blank");
}
} }
}; };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.home { .app-container {
blockquote { display: flex;
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eee;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee;
}
.col-item {
margin-bottom: 20px;
}
ul {
padding: 0;
margin: 0;
}
font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif; .left-container {
font-size: 13px; width: 400px;
color: #676a6c;
overflow-x: hidden;
ul { .image {
list-style-type: none; width: 100%;
} height: 100%;
h4 {
margin-top: 0px;
}
h2 {
margin-top: 10px;
font-size: 26px;
font-weight: 100;
}
p {
margin-top: 10px;
b {
font-weight: 700;
} }
} }
.update-log { .right-container {
ol { flex: 1;
display: block;
list-style-type: decimal;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0;
margin-inline-end: 0;
padding-inline-start: 40px;
}
} }
} }
</style> </style>

Loading…
Cancel
Save