mirror of https://github.com/halo-dev/halo
fix: content block padding error. (halo-dev/console#254)
parent
670c75815b
commit
75cd1476c8
|
@ -74,17 +74,45 @@ export default {
|
|||
<style lang="less" scoped>
|
||||
.page-header {
|
||||
background: #fff;
|
||||
padding: 0 24px 0;
|
||||
border-bottom: 1px solid #e8e8e8;
|
||||
.ant-page-header {
|
||||
padding: 16px 0px;
|
||||
}
|
||||
margin: 0 0 24px 0;
|
||||
}
|
||||
|
||||
.mobile .page-header,
|
||||
.tablet .page-header {
|
||||
padding: 0 !important;
|
||||
.ant-page-header {
|
||||
padding: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
margin: 24px 24px 0;
|
||||
.link {
|
||||
margin-top: 16px;
|
||||
&:not(:empty) {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
a {
|
||||
margin-right: 32px;
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
display: inline-block;
|
||||
i {
|
||||
font-size: 24px;
|
||||
margin-right: 8px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
span {
|
||||
height: 24px;
|
||||
line-height: 24px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -238,6 +238,7 @@
|
|||
</a-form-model-item>
|
||||
<a-form-model-item v-show="installModal.remote.byBranchOrRelease ==='branch'">
|
||||
<ReactiveButton
|
||||
:disabled="!installModal.remote.selectedBranch"
|
||||
type="primary"
|
||||
@click="handleBranchPulling"
|
||||
@callback="handleBranchPulledCallback"
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<a-button
|
||||
type="link"
|
||||
@click="advancedOptions = !advancedOptions"
|
||||
style="padding:0"
|
||||
>
|
||||
切换到{{ advancedOptions?'基础选项':'高级选项' }}
|
||||
</a-button>
|
||||
|
|
Loading…
Reference in New Issue