mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
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:
parent
2f67b8cba1
commit
c855554825
@ -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>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user