Skip to content

Commit 534cd5b

Browse files
authored
chore: change node-sass to dart-sass (PanJiaChen#3040)
1 parent f1feb2a commit 534cd5b

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@
9292
"husky": "1.3.1",
9393
"lint-staged": "8.1.5",
9494
"mockjs": "1.0.1-beta3",
95-
"node-sass": "^4.9.0",
9695
"plop": "2.3.0",
9796
"runjs": "^4.3.2",
97+
"sass": "^1.26.2",
9898
"sass-loader": "^7.1.0",
9999
"script-ext-html-webpack-plugin": "2.1.3",
100100
"serve-static": "^1.13.2",

src/components/HeaderSearch/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export default {
159159
display: inline-block;
160160
vertical-align: middle;
161161
162-
/deep/ .el-input__inner {
162+
::v-deep .el-input__inner {
163163
border-radius: 0;
164164
border: 0;
165165
padding-left: 0;

src/components/Tinymce/components/EditorImage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export default {
104104
<style lang="scss" scoped>
105105
.editor-slide-upload {
106106
margin-bottom: 20px;
107-
/deep/ .el-upload--picture-card {
107+
::v-deep .el-upload--picture-card {
108108
width: 100%;
109109
}
110110
}

src/layout/components/TagsView/ScrollPane.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default {
8282
position: relative;
8383
overflow: hidden;
8484
width: 100%;
85-
/deep/ {
85+
::v-deep {
8686
.el-scrollbar__bar {
8787
bottom: 0px;
8888
}

src/views/dashboard/admin/components/BoxCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export default {
101101
background-color: #fff;
102102
margin: auto;
103103
box-shadow: none!important;
104-
/deep/ .pan-info {
104+
::v-deep .pan-info {
105105
box-shadow: none!important;
106106
}
107107
}

src/views/example/components/ArticleDetail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export default {
277277
}
278278
}
279279
280-
.article-textarea /deep/ {
280+
.article-textarea ::v-deep {
281281
textarea {
282282
padding-right: 40px;
283283
resize: none;

src/views/permission/directive.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default {
9191

9292
<style lang="scss" scoped>
9393
.app-container {
94-
/deep/ .permission-alert {
94+
::v-deep .permission-alert {
9595
width: 320px;
9696
margin-top: 15px;
9797
background-color: #f0f9eb;
@@ -100,10 +100,10 @@ export default {
100100
border-radius: 4px;
101101
display: inline-block;
102102
}
103-
/deep/ .permission-sourceCode {
103+
::v-deep .permission-sourceCode {
104104
margin-left: 15px;
105105
}
106-
/deep/ .permission-tag {
106+
::v-deep .permission-tag {
107107
background-color: #ecf5ff;
108108
}
109109
}

0 commit comments

Comments
 (0)