2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-11-27 10:51:33 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-11-14 14:00:01 +00:00
|
|
|
<template>
|
2018-11-19 15:32:50 +00:00
|
|
|
<div class="account-area-container">
|
2019-10-02 10:42:12 +01:00
|
|
|
<router-view/>
|
2018-11-14 14:00:01 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2019-09-09 11:33:39 +01:00
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
2018-11-14 14:00:01 +00:00
|
|
|
|
2019-10-07 12:29:41 +01:00
|
|
|
@Component
|
|
|
|
export default class AccountArea extends Vue {}
|
2018-11-14 14:00:01 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2019-11-05 11:30:18 +00:00
|
|
|
::-webkit-scrollbar,
|
|
|
|
::-webkit-scrollbar-track,
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
width: 4px;
|
|
|
|
background-color: #f5f6fa;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track-piece {
|
|
|
|
background-color: #f5f6fa;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background-color: #afb7c1;
|
|
|
|
}
|
|
|
|
|
2018-11-19 15:32:50 +00:00
|
|
|
.account-area-container {
|
2019-12-27 16:41:43 +00:00
|
|
|
padding: 0 65px;
|
2019-12-02 19:27:56 +00:00
|
|
|
height: 100%;
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-07-10 10:55:40 +01:00
|
|
|
&__navigation {
|
|
|
|
position: absolute;
|
|
|
|
right: 55px;
|
|
|
|
z-index: 99;
|
2019-10-28 15:59:19 +00:00
|
|
|
background-color: #f5f6fa;
|
2019-07-10 10:55:40 +01:00
|
|
|
}
|
2018-11-14 14:00:01 +00:00
|
|
|
}
|
2019-09-20 11:21:22 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 1024px) {
|
2019-10-28 15:59:19 +00:00
|
|
|
|
2019-09-20 11:21:22 +01:00
|
|
|
.account-area-container {
|
|
|
|
padding: 44px 40px 55px 40px;
|
|
|
|
|
|
|
|
&__navigation {
|
|
|
|
right: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-25 16:06:19 +01:00
|
|
|
</style>
|