Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Commit

Permalink
fix: 问答页面导航栏高度不一致的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mutoe committed Jul 3, 2018
1 parent 53fcc1e commit 439e81d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/modules/question/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default {
// Root box class name.
.module-question-app-bar {
width: 100%;
height: 116px;
height: 0.9rem;
background: #fff;
border-bottom: solid 1px #dedede;
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions src/components/modules/question/Questions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,12 +239,12 @@ export default {

<style lang="less">
.module-questions {
padding-top: 206px;
padding-top: 182px;
padding-bottom: 100px;
min-height: 100vh;
.module-questions-nav {
position: fixed;
top: 116px;
top: 90px;
display: flex;
width: 100%;
height: 90px;
Expand Down
4 changes: 2 additions & 2 deletions src/components/modules/question/Topics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@ export default {
<style lang="less">
@root: module-questions-topics;
.@{root} {
padding-top: 206px;
padding-top: 182px;
padding-bottom: 100px;
min-height: 100vh;
&-nav {
position: fixed;
top: 116px;
top: 90px;
display: flex;
width: 100%;
height: 90px;
Expand Down

0 comments on commit 439e81d

Please sign in to comment.