Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
canwdev committed Oct 2, 2022
1 parent 8306753 commit c599f46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build": "vite build --emptyOutDir",
"build:strict": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
Expand Down
2 changes: 1 addition & 1 deletion vue/src/styles/editor/keenote-dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@
.hmd-table-column-content {
// do NOT delete padding, otherwise measuring will be inaccurate!
// something about layout Grid and Block Formatting Contexts
padding: ($table-row1-height / 2) 1px;
padding: calc($table-row1-height / 2) 1px;
}

&.HyperMD-table-row-1 {
Expand Down
2 changes: 1 addition & 1 deletion vue/src/styles/editor/keenote-light.scss
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@
.hmd-table-column-content {
// do NOT delete padding, otherwise measuring will be inaccurate!
// something about layout Grid and Block Formatting Contexts
padding: ($table-row1-height / 2) 1px;
padding: calc($table-row1-height / 2) 1px;
}

&.HyperMD-table-row-1 {
Expand Down

0 comments on commit c599f46

Please sign in to comment.