Created
June 13, 2020 12:28
-
-
Save zzjtnb/f84cfcbf17e2301fcf219d8ad17047d9 to your computer and use it in GitHub Desktop.
vue覆盖elementui样式
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```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