25 lines
433 B
Vue
25 lines
433 B
Vue
<template>
|
|
<div class="profile">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
@import "@/styles/_variables.scss";
|
|
@import "@/styles/_functions.scss";
|
|
@import "@/styles/_mixins.scss";
|
|
|
|
.profile {
|
|
padding: $large-spacing;
|
|
max-width: 640px;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
|
|
@include desktop {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
</style>
|