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>
This commit is contained in:
sebastian2357 2025-04-30 18:28:01 +02:00 committed by GitHub
parent 2f67b8cba1
commit c855554825
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
<template>
<div class="layout-blank">
<ds-container>
<div style="padding: 5rem 2rem">
<div>
<nuxt />
</div>
</ds-container>
@ -15,3 +15,14 @@ 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>