このコミットが含まれているのは:
Roger Braun 2016-12-02 14:33:03 +01:00
コミット 187c4a7d57
4個のファイルの変更13行の追加20行の削除

ファイルの表示

@ -63,7 +63,7 @@ nav {
}
sidebar {
.sidebar {
flex: 1;
flex-basis: 300px;
}
@ -255,3 +255,8 @@ nav {
.fade-enter, .fade-leave-active {
opacity: 0
}
.main {
flex: 2;
flex-basis: 500px;
}

ファイルの表示

@ -6,14 +6,16 @@
</div>
</nav>
<div class="container" id="content">
<sidebar>
<div class="sidebar">
<user-panel></user-panel>
<nav-panel></nav-panel>
<notifications v-if="currentUser"></notifications>
</sidebar>
<transition name="fade">
<router-view></router-view>
</transition>
</div>
<div class="main">
<transition name="fade">
<router-view></router-view>
</transition>
</div>
</div>
</div>
</template>

ファイルの表示

@ -18,10 +18,3 @@
</div>
</template>
<script src="./timeline.js"></script>
<style>
.timeline.panel {
flex: 2;
flex-basis: 500px;
}
</style>

ファイルの表示

@ -5,10 +5,3 @@
</template>
<script src="./user_profile.js"></script>
<style>
.user-profile {
flex: 2;
flex-basis: 500px;
}
</style>