10 changed files with 42 additions and 66 deletions
@ -1,36 +0,0 @@ |
|||||
// mixin |
|
||||
// 清除浮动 |
|
||||
@mixin clearfix { |
|
||||
&:after { |
|
||||
content: ""; |
|
||||
display: table; |
|
||||
clear: both; |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
// 多行隐藏 |
|
||||
@mixin textoverflow($clamp:1) { |
|
||||
display: block; |
|
||||
overflow: hidden; |
|
||||
text-overflow: ellipsis; |
|
||||
-o-text-overflow: ellipsis; |
|
||||
display: -webkit-box; |
|
||||
-webkit-line-clamp: $clamp; |
|
||||
/*! autoprefixer: ignore next */ |
|
||||
-webkit-box-orient: vertical; |
|
||||
} |
|
||||
|
|
||||
//flex box |
|
||||
@mixin flexbox($jc:space-between, $ai:center, $fd:row, $fw:nowrap) { |
|
||||
display: flex; |
|
||||
display: -webkit-flex; |
|
||||
flex: 1; |
|
||||
justify-content: $jc; |
|
||||
-webkit-justify-content: $jc; |
|
||||
align-items: $ai; |
|
||||
-webkit-align-items: $ai; |
|
||||
flex-direction: $fd; |
|
||||
-webkit-flex-direction: $fd; |
|
||||
flex-wrap: $fw; |
|
||||
-webkit-flex-wrap: $fw; |
|
||||
} |
|
@ -1,3 +0,0 @@ |
|||||
// variables |
|
||||
$background-color: #f8f8f8; |
|
||||
$theme-color: #07b0b8; |
|
Loading…
Reference in new issue