Skip to content

Commit

Permalink
feat: add box size CSS property
Browse files Browse the repository at this point in the history
  • Loading branch information
selemondev committed Mar 13, 2024
1 parent 3b2fd8a commit 6698b7a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/questions/vue/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const prompt = [
{
name: 'useDevTool',
type: () => 'toggle',
message: 'Add Vue DevTools to enhance the development experience?',
message: 'Add Vue DevTools to enhance the development experience? (experimental)',
initial: false,
active: 'Yes',
inactive: 'No'
Expand Down
1 change: 1 addition & 0 deletions template/vue-js/src/assets/css/base.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
Expand Down
1 change: 1 addition & 0 deletions template/vue-ts/src/assets/css/base.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
Expand Down

0 comments on commit 6698b7a

Please sign in to comment.