91 lines
1.6 KiB
Vue
91 lines
1.6 KiB
Vue
<!-- / || /index.html 首页 | 列表 | 搜索
|
||
/publish 发布
|
||
/details/{id} 详情 -->
|
||
|
||
<template>
|
||
<div>
|
||
<!-- <NuxtWelcome /> -->
|
||
<RouterView :key="$route.fullPath"></RouterView>
|
||
</div>
|
||
</template>
|
||
|
||
<style>
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
||
}
|
||
|
||
.flexflex {
|
||
display: flex;
|
||
}
|
||
|
||
.flex1 {
|
||
flex: 1;
|
||
}
|
||
|
||
.flexcenter {
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
}
|
||
|
||
.flexacenter {
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
|
||
.flexjcenter {
|
||
display: flex;
|
||
justify-content: center;
|
||
}
|
||
|
||
/* // 一行显示 */
|
||
.ellipsis {
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
body {
|
||
background-color: rgba(238, 242, 245, 1);
|
||
}
|
||
|
||
a {
|
||
text-decoration: none !important;
|
||
}
|
||
|
||
/* Webkit浏览器(Chrome、Safari等) */
|
||
*::-webkit-scrollbar {
|
||
width: 8px;
|
||
background-color: transparent;
|
||
}
|
||
|
||
*::-webkit-scrollbar-thumb {
|
||
background-color: #d7d7d7;
|
||
border-radius: 4px;
|
||
}
|
||
|
||
*::-webkit-scrollbar-thumb:hover {
|
||
background-color: #666;
|
||
}
|
||
|
||
/* Firefox浏览器 */
|
||
/* 注意:Firefox浏览器不支持修改滚动条的宽度 */
|
||
/* 若要修改滚动条的宽度,可以使用一些特殊的插件或者自定义滚动条的替代方案 */
|
||
/* 以下代码只是修改滚动条的颜色和背景色 */
|
||
* {
|
||
scrollbar-width: thin;
|
||
scrollbar-color: #d7d7d7 transparent;
|
||
}
|
||
|
||
*::-moz-scrollbar-thumb {
|
||
background-color: #d7d7d7;
|
||
}
|
||
|
||
*::-moz-scrollbar-thumb:hover {
|
||
background-color: #666;
|
||
}
|
||
</style>
|