no message

Former-commit-id: fe0e951f1addef7d9a1bdcb923a404a38581db6a
Former-commit-id: 705fe2d2573ed81dad4a16b61b6585b1d831828f
Former-commit-id: 28e7a04fc692395cb7405f81cf6ce6c118ee74be
This commit is contained in:
liyang
2018-06-03 19:11:15 +08:00
parent 0735219a46
commit 165ae5d6a2
5 changed files with 22 additions and 19 deletions

View File

@@ -68,10 +68,14 @@ export default {
<style lang="scss" scoped>
$border-color: #d8dfea;
.dd-card-full {
position: absolute;
border-radius: 4px;
border: 1px solid #ebeef5;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-top: 1px solid $border-color;
border-left: 1px solid $border-color;
border-right: 1px solid $border-color;
background-color: #fff;
overflow: hidden;
color: #303133;
@@ -84,7 +88,7 @@ export default {
left: 0px;
width: 100%;
padding: 18px 20px;
border-bottom: 1px solid #ebeef5;
border-bottom: 1px solid $border-color;
box-sizing: border-box;
}
.dd-card-full__body {
@@ -101,7 +105,7 @@ export default {
left: 0px;
width: 100%;
padding: 18px 20px;
border-top: 1px solid #ebeef5;
border-top: 1px solid $border-color;
box-sizing: border-box;
}
}