sebastian2357 c855554825
fix(webapp): fixed padding for mobile in basic layout (#8455)
* - fixed padding for mobile in basic layout

* Select .layout-blank class only

---------

Co-authored-by: Sebastian Stein <sebastian@codepassion.de>
Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>
2025-04-30 16:28:01 +00:00

29 lines
457 B
Vue

<template>
<div class="layout-blank">
<ds-container>
<div>
<nuxt />
</div>
</ds-container>
<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>