Commit 2b706f4b authored by 刘怀志's avatar 刘怀志

init-4

parent 1da4624e
...@@ -25,4 +25,5 @@ export default { ...@@ -25,4 +25,5 @@ export default {
#app .theme-picker { #app .theme-picker {
display: none; display: none;
} }
</style> </style>
...@@ -112,11 +112,13 @@ export default { ...@@ -112,11 +112,13 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.navbar { .navbar {
display: flex;
height: 50px; height: 50px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
background: #fff; background: #fff;
box-shadow: 0 1px 4px rgba(0,21,41,.08); box-shadow: 0 1px 4px rgba(0,21,41,.08);
justify-content: space-between;
.hamburger-container { .hamburger-container {
line-height: 46px; line-height: 46px;
...@@ -136,8 +138,8 @@ export default { ...@@ -136,8 +138,8 @@ export default {
} }
.topmenu-container { .topmenu-container {
position: absolute; //position: absolute;
left: 50px; //left: 50px;
} }
.errLog-container { .errLog-container {
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
<div :class="{hasTagsView:needTagsView,sidebarHide:sidebar.hide}" class="main-container"> <div :class="{hasTagsView:needTagsView,sidebarHide:sidebar.hide}" class="main-container">
<div :class="{'fixed-header':fixedHeader}"> <div :class="{'fixed-header':fixedHeader}">
<navbar/> <navbar/>
<tags-view v-if="needTagsView"/>
</div> </div>
<app-main/> <app-main/>
<right-panel> <right-panel>
...@@ -108,4 +107,7 @@ export default { ...@@ -108,4 +107,7 @@ export default {
.mobile .fixed-header { .mobile .fixed-header {
width: 100%; width: 100%;
} }
.app-wrapper{
background: gray;
}
</style> </style>
...@@ -12,7 +12,7 @@ module.exports = { ...@@ -12,7 +12,7 @@ module.exports = {
/** /**
* 是否显示顶部导航 * 是否显示顶部导航
*/ */
topNav: false, topNav: true,
/** /**
* 是否显示 tagsView * 是否显示 tagsView
......
<template> <template>
<div> <div class="video-now">
<!-- 创建一个用于显示视频的容器 --> <!-- 创建一个用于显示视频的容器 -->
<div ref="playWnd" class="video-watch" id="playWnd"></div> <div ref="playWnd" class="video-watch" id="playWnd"></div>
</div> </div>
...@@ -195,7 +195,15 @@ export default { ...@@ -195,7 +195,15 @@ export default {
<style scoped> <style scoped>
.video-watch{ .video-watch{
min-height: calc(100vh - 84px); min-height: calc(80vh - 84px);
width: 100%; width: 90%;
}
.video-now{
width: 95vw;
height: 90vh;
background: #fff;
margin: 0 auto;
display: flex;
justify-content: center;
} }
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment