2
0
mirror of https://github.com/YMFE/yapi.git synced 2025-04-24 15:30:44 +08:00

Merge branch 'dev' of gitlab.corp.qunar.com:mfe/yapi into dev

This commit is contained in:
祝鑫奔 2017-07-27 20:11:28 +08:00
commit 7da3c39693
4 changed files with 6 additions and 6 deletions
client
components
containers/Home
styles

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

@ -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;

@ -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;

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