Skip to content

Instantly share code, notes, and snippets.

@zzjtnb
Created June 13, 2020 12:28
Show Gist options
  • Select an option

  • Save zzjtnb/f84cfcbf17e2301fcf219d8ad17047d9 to your computer and use it in GitHub Desktop.

Select an option

Save zzjtnb/f84cfcbf17e2301fcf219d8ad17047d9 to your computer and use it in GitHub Desktop.
vue覆盖elementui样式
```html
<el-dialog title="人员列表" class="ebvdia" :visible.sync="ToastView" width="80%">
<el-form :model="EnterpriseDetails" class="table" label-width="120px">
</el-form>
</el-dialog>
// 使用了scss 或者 less
.ebvdia /deep/ {
margin-top: -5vh;
.el-dialog__body {
height: 600px !important;
}
}
//未使用scss less
.ebvdia >>> .el-dialog__body {
margin-top: -5vh;
height: 600px !important;
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment