23 lines
327 B
Vue
23 lines
327 B
Vue
<template>
|
|
<div class="profile">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
@import 'styles/helpers';
|
|
|
|
.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>
|