Skip to content

Commit d78c6a5

Browse files
committed
fix: fix style reset margin
1 parent 9d3409e commit d78c6a5

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

playground/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ playground/
1414
├── scenarios/ # Scenario directory, add dynamically
1515
│ ├── basic/ # Basic example
1616
│ ├── customMain/ # Custom main entry
17+
│ ├── html/ # html as entry example
1718
│ ├── pinia/ # Pinia state management example
1819
│ └── vueRouter/ # Vue Router example
20+
│ └── vueUse/ # Vue Use example
1921
└── src/
2022
└── App.vue # Main application component
2123
```

playground/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Playground</title>
8+
<style>
9+
body {
10+
margin: 0;
11+
}
12+
</style>
813
<script type="module" src="./main.ts"></script>
914
</head>
1015
<body>

0 commit comments

Comments
 (0)