mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
* - fixed nowrap for button - restyled bullets for slider - relocated back links - removed icons * - removed icon from RegistrationSlideEmail too * - added media query for padding * - fixed missing constants * - fixed padding in no-header layout * - fixed sticky footer in registration flow * - removed icons from inputs * - set fixed height for back link * - fixed invite code placeholder * - added auto submit to invite and email code forms - fixed layout password inputs - added layout to checkboxes (create) - removed unnecessary texts - moved backLink for password-reset - tidied up create layout * fixed margin * - fixed nonceLength * lint fixes * corrected path --------- Co-authored-by: Sebastian Stein <sebastian@codepassion.de> Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
53 lines
880 B
Vue
53 lines
880 B
Vue
<template>
|
|
<div class="layout-blank">
|
|
<div class="layout-content">
|
|
<ds-container>
|
|
<div>
|
|
<nuxt />
|
|
</div>
|
|
</ds-container>
|
|
</div>
|
|
<page-footer :is-sticky="false" />
|
|
<div id="overlay" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import seo from '~/mixins/seo'
|
|
import PageFooter from '~/components/PageFooter/PageFooter'
|
|
|
|
export default {
|
|
components: {
|
|
PageFooter,
|
|
},
|
|
mixins: [seo],
|
|
methods: {
|
|
redirectToRoot() {
|
|
this.$router.replace('/')
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.layout-blank {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.layout-content {
|
|
flex: 1;
|
|
}
|
|
|
|
.layout-blank > .layout-content > .ds-container > div {
|
|
padding: 5rem 2rem;
|
|
}
|
|
|
|
@media only screen and (max-width: 500px) {
|
|
.layout-blank > .layout-content > .ds-container > div {
|
|
padding: 3rem 0;
|
|
}
|
|
}
|
|
</style>
|