mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-01 12:44:37 +00:00
29 lines
481 B
Vue
29 lines
481 B
Vue
<template>
|
|
<div class="layout-blank">
|
|
<div class="ds-container ds-container-x-large">
|
|
<div>
|
|
<nuxt />
|
|
</div>
|
|
</div>
|
|
<div id="overlay" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import seo from '~/mixins/seo'
|
|
export default {
|
|
mixins: [seo],
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.layout-blank > .ds-container > div {
|
|
padding: 5rem 2rem;
|
|
}
|
|
@media only screen and (max-width: 500px) {
|
|
.layout-blank > .ds-container > div {
|
|
padding: 3rem 0;
|
|
}
|
|
}
|
|
</style>
|