@ -1,3 +1,9 @@
## [0.7.4](https://github.com/vuejs/vitepress/compare/v0.7.3...v0.7.4) (2020-11-11)
### Bug Fixes
- **css:** fix padding on mobile ([9c7293b](https://github.com/vuejs/vitepress/commit/9c7293b6cbdbcabb4257793e1b1f3fea2388c31e)), closes [#121](https://github.com/vuejs/vitepress/issues/121)
## [0.7.3](https://github.com/vuejs/vitepress/compare/v0.7.2...v0.7.3) (2020-11-06)
@ -1,6 +1,6 @@
{
"name": "vitepress",
"version": "0.7.3",
"version": "0.7.4",
"description": "",
"main": "dist/node/index.js",
"typings": "types/index.d.ts",
@ -71,7 +71,7 @@ body {
@media screen and (max-width: 959px) {
.theme aside {
width: 16.4rem;
width: var(--sidebar-width);
}
@ -96,7 +96,12 @@ body {
.theme main {
padding-top: var(--header-height);
padding-left: var(--sidebar-width);
@media screen and (min-width: 960px) {
@media screen and (min-width: 720px) {
@ -110,7 +115,7 @@ body {
margin-left: 16.4rem;
margin-left: var(--sidebar-width);