Create VPHomeContent.vue

pull/3561/head
Jacob Hummer 2 years ago committed by GitHub
parent 44b73cd918
commit 27dd0ba4ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,27 @@
<template>
<div class="vp-doc container">
<slot />
</div>
</template>
<style scoped>
.container {
margin: auto;
width: 100%;
max-width: 1280px;
padding: 0 24px;
}
@media (min-width: 640px) {
.container {
padding: 0 48px;
}
}
@media (min-width: 960px) {
.container {
width: 100%;
padding: 0 64px;
}
}
</style>
Loading…
Cancel
Save