Files
jiace-web/src/App.vue

50 lines
737 B
Vue
Raw Normal View History

2021-08-02 09:31:25 +08:00
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
2021-08-02 14:40:12 +08:00
export default {
name: 'App'
};
2021-08-02 09:31:25 +08:00
</script>
2021-08-02 14:40:12 +08:00
<style lang="scss">
.content {
width: 1400px;
margin: 0 auto;
}
2021-08-04 08:39:11 +08:00
.p0-100 {
padding: 0 100px;
}
.text_hidden_one {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
2021-08-10 09:04:25 +08:00
.text_hidden_two {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
word-break: break-all;
}
2021-08-05 09:35:02 +08:00
.text_hidden_four {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
word-break: break-all;
}
.text_18_333 {
font-size: 18px;
color: #333;
}
.pointer {
cursor: pointer;
&:hover {
color: #ffa32c;
}
2021-08-04 08:39:11 +08:00
}
2021-08-02 14:40:12 +08:00
</style>