Skip to content

Commit

Permalink
Merge pull request #7458 from wenzhixin/fix/7378
Browse files Browse the repository at this point in the history
Fixed build css base script error
  • Loading branch information
wenzhixin authored Aug 14, 2024
2 parents 52416ff + dc615b6 commit b4c110d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"js:build:vue": "vite build && mv dist/bootstrap-table-vue.umd.cjs dist/bootstrap-table-vue.umd.js",
"js:build": "run-s js:build:*",
"css:build:src": "sass --no-source-map -I node_modules src:src",
"css:build:base": "sass --no-source-map -I node_modules -s compressed src:dist",
"css:build:base": "sass --no-source-map -I node_modules src:dist",
"css:build:min": "foreach -g \"dist/**/*.css\" -x \"cleancss #{path} -o #{dir}/#{name}.min.css\"",
"css:build:banner": "foreach -g \"dist/**/*.min.css\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
"css:build": "run-s css:build:*",
Expand Down
4 changes: 2 additions & 2 deletions src/themes/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -327,15 +327,15 @@

li.page-intermediate {
a {
color: #c8c8c8;

&::before {
content: "\2B05";
}

&::after {
content: "\27A1";
}

color: #c8c8c8;
}
}

Expand Down

0 comments on commit b4c110d

Please sign in to comment.