fix: 修改页面布局导致右边空白的错误

This commit is contained in:
yhui.yang 2017-07-27 20:10:51 +08:00
parent 71b852708f
commit 5cc9237c3d
4 changed files with 6 additions and 6 deletions

View File

@ -23,6 +23,7 @@
}
}
.footerMask{
@include wrap-width-limit;
position: absolute;
top: 0px;
height: 100%;

View File

@ -8,10 +8,10 @@ $color-grey-deep : #929aac;
$color-black-light : #404040;
/* .header-box.css */
.header-box {
@include wrap-width-limit;
display: block;
font-size: 0.14rem;
z-index: 99;
@include wrap-width-limit;
.content {
@include row-width-limit;
margin: 0 auto;

View File

@ -52,7 +52,6 @@ $color-black-lighter: #404040;
@include row-width-limit;
margin: 1rem auto 0;
.user-des{
@include row-width-limit;
margin: 0 auto .5rem;
text-align: center;
.title{
@ -74,9 +73,9 @@ $color-black-lighter: #404040;
}
}
.main-part{
padding: .9rem .5rem;
height: 5.8rem;
@include wrap-width-limit;
padding: .9rem 0;
height: 5.8rem;
&:nth-child(odd){
background-color: $color-blue-lighter;
}
@ -86,7 +85,7 @@ $color-black-lighter: #404040;
}
.feat-part{
@include wrap-width-limit;
padding: .9rem .5rem;
padding: .9rem 0;
background-color: $color-white;
p{
display: flex;

View File

@ -4,5 +4,5 @@
}
@mixin wrap-width-limit {
min-width: 10.7rem;
min-width: 9.7rem;
}