no message

Former-commit-id: 40b024e1e33bfc3d320dd67daa28d83839778ee8
Former-commit-id: 4dfb836e4cd122cc259e95a61cf004539dd384af
Former-commit-id: bea7cb72c3eb2f0e3fe659f49f7ae2e53064262e
This commit is contained in:
李杨
2018-01-16 22:41:37 +08:00
parent 78534ced33
commit 417a3aef24
2 changed files with 22 additions and 3 deletions

View File

@@ -49,6 +49,22 @@
margin-left: $margin; margin-left: $margin;
} }
.#{$prefix}-m-10 {
margin: 10px;
}
.#{$prefix}-mt-10 {
margin-top: 10px;
}
.#{$prefix}-mr-10 {
margin-right: 10px;
}
.#{$prefix}-mb-10 {
margin-bottom: 10px;
}
.#{$prefix}-ml-10 {
margin-left: 10px;
}
.#{$prefix}-m-0 { .#{$prefix}-m-0 {
margin: 0px; margin: 0px;
} }

View File

@@ -5,8 +5,11 @@
placement="top" placement="top"
width="160" width="160"
v-model="popover.visible"> v-model="popover.visible">
<p>访问 Github</p> <p class="dd-mt-0 dd-mb-10">
<p style="font-size: 10px;">{{name}}</p> <span class="fa fa-github"></span>
github
</p>
<p class="dd-mt-0 dd-mb-10" style="font-size: 10px;">{{name}}</p>
<div style="text-align: right; margin: 0"> <div style="text-align: right; margin: 0">
<el-button size="mini" type="text" @click="popover.visible = false"> <el-button size="mini" type="text" @click="popover.visible = false">
取消 取消
@@ -19,8 +22,8 @@
<el-button <el-button
v-popover:pop v-popover:pop
v-bind="$attrs"> v-bind="$attrs">
view in
<span class="fa fa-github"></span> <span class="fa fa-github"></span>
{{name}}
</el-button> </el-button>
</div> </div>
</template> </template>